显示程序执行时间php函数代码
2015-01-24信息快讯网
这篇文章介绍了显示程序执行时间php函数代码,有需要的朋友可以参考一下
/** * 程序执行时间 * * @return int 单位ms */ function execute_time() { $stime = explode ( ' ', SYS_START_TIME ); $etime = explode ( ' ', microtime () ); return number_format ( ($etime [1] + $etime [0] - $stime [1] - $stime [0]), 6 ); }