所以安装了XAMPP,并有一个php文件,请求一些内容与
的file_get_contents($ URL)
出于某种原因,此调用只需30秒。如果我在彼此之后进行2次调用,则php执行时间至少为60秒。
但是,请求成功并从URL获取内容!它只需要整整30多岁。
我该怎么办? XAMPP是编码错误还是配置错误?
<?php
$time_start = microtime(true);
echo file_get_contents("https://google.de");
$time_end = microtime(true);
$execution_time = ($time_end - $time_start)/60;
echo '<b>Total Execution Time:</b> '.$execution_time.' Mins';
结果
[google page]总执行时间:0.70655170281728分钟
我的网络工作正常,在浏览器中我几乎可以立即访问该网站