播种随机数生成器:
<?PHP srand(mktime()); echo(rand());?>
srand() 函数播种随机数生成器(rand())。
提示:从 PHP 4.2.0 开始,随机数生成器自动播种,因此没有必要使用该函数。
srand(seed);