首页 > 开发 > PHP > 正文

显示程序执行时间php函数代码

2024-05-04 23:12:47
字体:
来源:转载
供稿:网友

复制代码 代码如下:


/**
  * 程序执行时间
  *
  * @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 );
 }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表