计算一个程序的执行时间的函数
来源:程序员人生 发布时间:2014-04-01 11:08:20 阅读次数:3589次
计算一个程序的执行时间的函数
- function getmicrotime(){
- list($usec, $sec) = explode(" ",microtime());
- return ((float)$usec (float)$sec);
- }
-
- $time_start = getmicrotime();
-
- for ($i=0; $i < 1000; $i ){
-
- }
-
- $time_end = getmicrotime();
- $time = $time_end - $time_start;
-
- echo "Did nothing in $time seconds";
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠