码迷,mamicode.com
首页 > Web开发 > 详细

PHP获取页面执行时间的方法(推荐)

时间:2017-08-11 10:52:41      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:toolbar   log   输出   ota   mic   执行   头部   结束   color   

一些循环代码,有时候要知道页面执行的时间,可以添加以下几行代码到页面头部和尾部:

头部:

<?php
$stime=microtime(true);

 

尾部:

$etime=microtime(true);//获取程序执行结束的时间
$total=$etime-$stime;  //计算差值

 

最后输出:

echo "<br />当前页面执行时间为:{$total} 秒";

PHP获取页面执行时间的方法(推荐)

标签:toolbar   log   输出   ota   mic   执行   头部   结束   color   

原文地址:http://www.cnblogs.com/crystaltu/p/7344283.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!