我如何计算file_get_contents加载网页需要多长时间?

时间:2016-03-12 09:33:07

标签: php curl

我正在使用file_get_contents加载网页的内容,我如何查看获取网页所需的时间?!

1 个答案:

答案 0 :(得分:0)

很抱歉这个问题非常简单易行,所有需要做的就是声明一个变量,其中包含time()函数返回的秒数,因为它&#39 ; s值,然后稍后进行比较

<?php 
$before = time();
//ProcessHere
$now = time()-$before;
?>