(PHP 3, PHP 4 )
シード seed で乱数ジェネレータを 初期化します。
// マイクロでシードを設定する function make_seed() { list($usec, $sec) = explode(' ', microtime()); return (float) $sec + ((float) $usec * 100000); } srand(make_seed()); $randval = rand();
rand(),getrandmax(), mt_rand(),mt_srand(), mt_getrandmax() も参照下さい。