PHP 多个 curl 请求
2022-08-30 13:25:23
我目前正在使用Curl进行PHP。每次获得大约100页的结果需要花费大量时间。对于每个请求,我都在使用这样的代码
$ch = curl_init();
// get source
curl_close($ch);
我有哪些选择来加快速度?
我应该如何使用等?multi_init()
我目前正在使用Curl进行PHP。每次获得大约100页的结果需要花费大量时间。对于每个请求,我都在使用这样的代码
$ch = curl_init();
// get source
curl_close($ch);
我有哪些选择来加快速度?
我应该如何使用等?multi_init()
拿curl_multi - 它要好得多。保存握手 - 并非每次都需要握手!