srand
(PHP3 , PHP4)
srand ---&">nbsp; 设定乱数种子
语法 : void srand(int seed);
说明 :
设定乱数种子seed。
Example :
<?php
// seed with microseconds since last "whole" second
srand((double)microtime()*1000000);
$randval = rand();
?>
参考 : rand( ) getrandmax( ) mt_rand( ) mt_srand( ) mt_getrandmax( )
时间: 2024-10-01 12:10:47