首頁 >後端開發 >php教程 >php计算函数执行时间的方法,php计算函数执行_PHP教程

php计算函数执行时间的方法,php计算函数执行_PHP教程

WBOY
WBOY原創
2016-07-13 10:02:02853瀏覽

php计算函数执行时间的方法,php计算函数执行

本文实例讲述了php计算函数执行时间的方法。分享给大家供大家参考。具体如下:

我们可以通过在程序的前后分别记录开始和结束时间,两个时间差就是程序的执行时间。
复制代码 代码如下: $long_str = "this is a test to see how much time md5 function takes to execute over this string";
// start timing from here
$start = microtime(true);
// function to test
$md5 = md5($long_str);
$elapsed = microtime(true) - $start;
echo "That took $elapsed seconds.\n";
?>

运行结果如下:

That took 7.1525573730469E-6 seconds.

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/970988.htmlTechArticlephp计算函数执行时间的方法,php计算函数执行 本文实例讲述了php计算函数执行时间的方法。分享给大家供大家参考。具体如下: 我们可以...
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn