PHP 计算页面执行时间 程序员文章站 2022-05-06 22:36:00 ... 自己写了个计算页面执行时间的脚本 执行时间会显示在页面右上角 优点是只要在开始的时候执行一下就可以了 $t = new executeTime; phpinfo(); class executeTime{ private $microtime; public function __construct(){ $this->microtime = microtime(true); } public function getNow(){ $this->__dectruct(); } public function __destruct(){ if (empty($_SERVER['REQUEST_TIME_FLOAT'])) echo '本次执行时间:', microtime(TRUE) - $this->microtime, '秒'; else echo '本次执行时间:', microtime(TRUE) - $_SERVER['REQUEST_TIME_FLOAT'], '秒'; } } 复制代码 相关标签: PHP 计算页面执行时间 上一篇: 关于C++中string类对象的用法总结 下一篇: php eval函数一句话木马代码,phpeval函数一句话 推荐阅读 PHP常用函数之根据生日计算年龄功能示例 获取php页面执行时间,数据库读写次数,函数调用次数等(THINKphp) PHP 过滤页面中的BOM(实现代码) 用php简单实现加减乘除计算器 PHP之浮点数计算比较以及取整数不准确的解决办法 用PHP编程语言开发动态WAP页面 php 获取页面中指定内容的实现类 显示程序执行时间php函数代码 PHP页面中文乱码分析 php 团购折扣计算公式