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 计算函数执⾏时间的⽅法及获得微妙的⽅法
// 获得微妙⽅法
function getMillisecond()
{
list($s1, $s2) = explode(' ', microtime());
return (float)sprintf('%.0f', (floatval($s1) + floatval($s2)) * 1000);
ajax实例里面的函数}
原理:分别记录函数开始时间和结束时间,然后时间差就是函数执⾏的时间
<?php
$start_time = microtime(true);
for($i=1;$i<=1000;$i++){
echo $i.'<br>';
}
$end_time = microtime(true);
echo '循环执⾏时间为:'.($end_time-$start_time).' s';
>
希望本⽂所述对⼤家的php程序设计有所帮助。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论