码迷,mamicode.com
首页 > Web开发 > 详细

php使用microtime(true)查看代码执行时间

时间:2016-11-15 11:16:18      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:时间戳   code   log   color   span   time   使用   小数点   php   

microtime() 函数返回当前 Unix 时间戳和微秒数。

      如果带个 true 参数, 返回的将是一个浮点类型

round() 取出小数点后 3 位

 $t1 = microtime(true);
 // ... 执行代码 ...
 $t2 = microtime(true);
 echo ‘耗时‘.round($t2-$t1,3).‘秒‘;

 

php使用microtime(true)查看代码执行时间

标签:时间戳   code   log   color   span   time   使用   小数点   php   

原文地址:http://www.cnblogs.com/itslives-com/p/microtime.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!