标签: php curl
我正在使用file_get_contents加载网页的内容,我如何查看获取网页所需的时间?!
file_get_contents
答案 0 :(得分:0)
很抱歉这个问题非常简单易行,所有需要做的就是声明一个变量,其中包含time()函数返回的秒数,因为它&#39 ; s值,然后稍后进行比较
<?php $before = time(); //ProcessHere $now = time()-$before; ?>