php 页面执行时间计算代码

2018-09-26 20:06

阅读:431

  代码如下:
复制代码 代码如下:
<?
$pagestartime=microtime();
?>
<!--网页内容 start-->
网页内容
...
...
<!--网页内容 end-->
<?
$pageendtime = microtime();
$starttime = explode( ,$pagestartime);
$endtime = explode( ,$pageendtime);
$totaltime = $endtime[0]-$starttime[0]+$endtime[1]-$starttime[1];
$timecost = sprintf(%s,$totaltime);
echo 页面运行时间: $timecost 秒;
?>


评论


亲,登录后才可以留言!