我正在使用其他人编写的类来尝试连接到不是我的网站,它类似于http://www.futhead.com,您可以在其中使用 EA JSON 文件搜索玩家等。
然而,页面和脚本工作,但每次加载需要 4/5 秒。
我认为这可能是由于使用了 curl,我在这里寻找了一些答案,但没有一个真正改善任何东西。还有其他提高速度的方法吗?
$ch = curl_init($login);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/x-www-form-urlencoded',
'Content-Length: ' . strlen($data_string))
);
$response = curl_exec($ch);
curl_close($ch);