curl请求接口获取gzip压缩数据返回乱码问题解决办法

使用curl请求一个图片合成的接口,返回的是乱码,
请求header中包含’Accept-Encoding:gzip’

解决办法:是在curl的opt中设置CURLOPT_ENCODING为’gzip’来解析gzip内容
curl_setopt($ch, CURLOPT_ENCODING, ‘gzip’);
		$headerArr = [];
        $headerArr[]='Content-Type:application/json;encoding=utf-8';
        $headerArr[]='Proxy-Connection:close';       
        $headerArr[] = 'Accept-Encoding:gzip';
        $headerArr[] = 'Connection:close';
private static function curlPost($data,$url,$headerArr=null){
        if(empty($headerArr)){
            $headerArr = array('Content-Type: application/json', 'Content-Length: ' . strlen($data));
        }
        $headerArr[] = 'Content-Length: ' . strlen($data);
        $ch = curl_init($url);        
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);        
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  
        curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
        curl_setopt($ch, CURLOPT_HTTPHEADER, $headerArr);        
        $res = curl_exec($ch);        
        curl_close($ch);        
        return json_decode($res,1);
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章