Home > php教程 > PHP源码 > PHP中rand()和mt_rand()速度测试!

PHP中rand()和mt_rand()速度测试!

PHP中文网
Release: 2016-05-25 17:12:04
Original
1110 people have browsed it

PHP中rand()和mt_rand()速度测试!

function microtime_float()
{
    list($usec, $sec) = explode(" ", microtime());
    return ((float)$usec + (float)$sec);
}
$time_start = microtime_float();
for($i=0; $i<1000000; ++$i)
{
	rand();
}
$time_end = microtime_float();
$time = $time_end - $time_start;
echo "rand() cost $time seconds\n";


$time_start = microtime_float();
for($i=0; $i<1000000; ++$i)
{
	mt_rand();
}
$time_end = microtime_float();
$time = $time_end - $time_start;
echo "mt_rand() cost $time seconds\n";
Copy after login

我的测试结果是:

rand() cost 0.22429704666138 seconds    
mt_rand() cost 0.22963285446167 seconds
Copy after login

 以上就是PHP中rand()和mt_rand()速度测试!的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template