我正在点击发送多部分数据的内容服务器。
当服务器响应很小(<40KB)时,我在 $ response 中获得完整的响应数据 串。但是当服务器响应数据很大(> 112KB)时,它被修剪为48KB 我的整个多部分数据解析失败了。
如何在$ response字符串中获取整个112KB数据?
$options = array(
CURLOPT_RETURNTRANSFER => true, // return web page
CURLOPT_HEADER => false, // don't return headers
CURLOPT_FOLLOWLOCATION => true, // follow redirects
CURLOPT_ENCODING => "", // handle all encodings
CURLOPT_USERAGENT => "spider", // who am i
CURLOPT_AUTOREFERER => true, // set referer on redirect
CURLOPT_MAXREDIRS => 10, // stop after 10 redirects
);
$ch = curl_init( $this->url );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $arr_param);
$response = curl_exec( $ch );
$err = curl_errno( $ch );
$errmsg = curl_error( $ch );
$header = curl_getinfo( $ch );
parseData($response);
请帮助,我在这里做错了什么。