什麼可能是這種簡單的代碼的原因:很慢捲曲相比,瀏覽器
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://somepage.com/path');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_VERIFYPEER, false);
$output = curl_exec($ch);
是一貫1+秒慢於Firefox是?
我已經測試的Firefox使用
$timestart = microtime(true);
echo microtime(true) - $timestart;
和螢火蟲(淨標籤)PHP代碼。
https://somepage.com/path返回普通的JSON,它在Firefox上需要大約500ms,而在PHP中使用cURL需要1500個。
您是否驗證過Firefox沒有緩存頁面? – Lumbendil
@lumbendil是的,我做了,除了每次刷新頁面時頁面都改變了。 – user3110491