显示程序执行时间php函数代码
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:/***程序执行时间**@returnint单位ms*/functionexecute_time(){$stime=exp...
复制代码 代码如下:
/**
* 程序执行时间
*
* @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 );
}