srand

(PHP 3, PHP 4 )

srand -- 난수 발생기(random number generator)를 심는다(?-seed)

설명

void srand ( int seed)

seed로 난수발생기를 심는다.

// seed with microseconds since last "whole" second

srand ((double) microtime() * 1000000);

$randval = rand();

rand(), getrandmax(), mt_rand(), mt_srand(), 그리고 mt_getrandmax()를 참고하라.