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.
function startTime() { $secs = $mtime[1] + $mtime[0]; return $secs; } function execTime($start) { $end = startTime(); $total = $end - $start; } //Usage $start = startTime(); //the code..... echo execTime($start);
以上是关于PHP代码执行计时脚本的主要内容,如果未能解决你的问题,请参考以下文章