PHP代码执行计时脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP代码执行计时脚本相关的知识,希望对你有一定的参考价值。

Place startTime() at beginning where timing is to start. Get the return value and set the start time variable. At end of script to time call execTime($start) passing the start time and this will calculate elapsed time of execution.
  1. function startTime() {
  2. $mtime = microtime();
  3. $mtime = explode(' ', $mtime);
  4. $secs = $mtime[1] + $mtime[0];
  5. return $secs;
  6. }
  7.  
  8. function execTime($start) {
  9. $end = startTime();
  10. $total = $end - $start;
  11. return '<Br>'.sprintf('Executed in %.6f seconds.', $total);
  12. }
  13.  
  14. //Usage
  15.  
  16. $start = startTime();
  17.  
  18. //the code.....
  19.  
  20. echo execTime($start);

以上是关于PHP代码执行计时脚本的主要内容,如果未能解决你的问题,请参考以下文章

代码片段:Shell脚本实现重复执行和多进程

php初步

javascript脚本程序执行消耗的时间

php OPcache

PHP代码-psysh调试代码片段工具

php 一个自定义的try..catch包装器代码片段,用于执行模型函数,使其成为一个单行函数调用