例如,我将访问网站http://fs.to。
以下是Chrome控制台面板的屏幕截图:
我们可以看到加载html文档需要289毫秒。
然后我有了这段代码:
<?php
$time1 = microtime(true);
$ref = curl_init();
curl_setopt($ref, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ref, CURLOPT_TIMEOUT_MS, 1500);
curl_setopt($ref, CURLOPT_URL, 'http://fs.to');
$html = curl_exec($ref);
echo microtime(true) - $time1;
?>
输出0.64(640 ms) 为什么这么慢,我怎样才能加快速度呢? (慢2倍)