我制作了一个适用于API的php应用程序,但是为了向API发送请求,我使用curl和代理,并且该代理具有有限的bandiwith,有人可以告诉我一些可以帮助我减少带宽的做法。 P.S - 我已经知道CURLOPT_NOBODY有助于减少带宽的使用,但我需要保存更多的带宽。
我当前的代码 -
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_USERAGENT, 'My User Agent');
curl_setopt($ch, CURLOPT_PROXY, '209.XXX.XXX.XX:8081');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
curl_exec($ch);
curl_close($ch);