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

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

如下:

<?php
/**
  * 程序执行时间
  * @return  int 单位ms
  * @site www.jbxue.com
  */
 function execute_time() {
     $stime = explode ( ' ', SYS_START_TIME );
     $etime = explode ( ' ', microtime () );
     return number_format ( ($etime [1] + $etime [0] - $stime [1] - $stime [0]), 6 );
 }

您可能感兴趣的文章: 

php获取程序执行时间的方法
php 页面执行时间
php计算页面执行时间
php计算当前页面执行时间

你可能感兴趣的:(程序执行时间)