PHP PHP代码执行时序脚本

Posted

tags:

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

function startTime() {
    $mtime = microtime();
    $mtime = explode(' ', $mtime);
    $secs = $mtime[1] + $mtime[0];
    return $secs;
}

function execTime($start) {
    $end = startTime();
    $total = $end - $start;
    return '<Br>'.sprintf('Executed in %.6f seconds.', $total);
}

//Usage

$start = startTime();

//the code.....

echo execTime($start);

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

基本的 PHP 语法在服务器上执行脚本

如何使用 AJAX 执行 PHP 电子邮件脚本? [当前代码不起作用]

php如何执行shell脚本

PHP代码执行计时脚本

使用微秒来计算PHP脚本的执行时间

NGINX 显示脚本代码而不是执行