欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php基准时间的代码示例

程序员文章站 2022-04-07 22:04:46
...
本文介绍下,在php中用于处理基准时间的一段代码,有需要的朋友,参考下吧。

Here is a little example of how to benchmark or time something with php 这里有一段php代码,教大家如何去处理基准时间。

代码如下:

';
}

// the end time
$time_end = getmicrotime();

// subtract the start time from the end time to get the time taken
$time = $time_end - $time_start;

// echo a little message
echo '
Script ran for ' . round($time,2) .' seconds.'; ?>

This will produce a list of numbers from 0 to 9999 in your browser and tell you how long it took too complete the iterations. 以上将产生一个从0到9999的数字列表,以及完成这些计算任务所消耗的时间。

总结:以上主要演示了microtime()函数的用法。