Home  >  Article  >  Backend Development  >  关于microtime()函数的问题

关于microtime()函数的问题

WBOY
WBOYOriginal
2016-06-23 13:32:56943browse

我分别在程序的开头和结尾用microtime()函数取得当前时间,然后相减得到程序运行时间,在5.2版本的php上没问题,但是在5.3、5.4和5.5三个版本的php相减结果不是0就是0.0156,跟5.2.6版本的完全不同,这是怎么回事啊?


回复讨论(解决方案)

贴出你的代码

$startTime=microtime(true);printf("%.53f",microtime(true)-$startTime);


比如就这么两句,在5.2版本上每次都会输出数值,但其他几个版本全是0

$startTime=microtime(true);for($i=0;$i<1000000; $i++) {  $a = 1;}printf("%.16f",microtime(true)-$startTime);
0.0468750000000000

这就是版本的威力了
你可以改变循环的终值,使得各种版本下都有输出
然后你就会发现:每提高一个种版本号,时间就会缩小至少一个数量级

不同版本的运行时间不一样很正常。
高版本的比低版本的优化过,当然时间花费少很多。

谢谢各位,学习了

Statement:
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