php cURL返回大小增加

时间:2016-05-31 18:03:09

标签: php curl

我目前通过运行cURL来代理端点,但是我的cURL的大小比原始API大10倍,为什么会这样,我怎样才能减小大小?这都是JSON BTW。

Original API return size = 32.2kb cURL return size = 488KB

这是我的cURL脚本:

$ch = curl_init();
// set url
$url = 'http://domain.com/api/v1';

// set options
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );
curl_setopt($ch, CURLOPT_ENCODING,  '');
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
$output = curl_exec($ch);

// close curl resource to free up system resources
curl_close($ch);
return $output;

1 个答案:

答案 0 :(得分:-1)

ob_start('ob_gzhandler'); php输出缓冲区控制是解决我的问题。谢谢所有想要帮助的人!