クラスgetValues{
パブリック関数 inputValue($inputArray) {
$this->inputArray = $inputArray;
}
パブリック関数 getValue($number) {
$this->number = $number;
for($i = 0; $i number; $i ++) {
$index = rand ( 0, count ( $this->inputArray ) - 1 - $i );
$getArray [$i] = $this->inputArray [$index];
unset ( $this->inputArray [$index] );
for($k = $index; $k inputArray ) - 1; $k ++) {
$this->inputArray [$k] = $this->inputArray [$k + 1];
}
}
//asort ($getArray) // 小さいものから大きいものまで並べ替え、必要に応じて変更します
return $getArray;
}
}
//テストコード
$キーワード = 配列(
「私たち」
「あなた」
「彼ら」
);
$getValue=new getValues();
$getValue->inputValue($keywords);
$key = $getValue->getValue(1);//配列から要素をランダムに抽出します
? >
|