1

我正在访问发送多部分数据的内容服务器。

当服务器响应很小(< 40KB)时,我会在$response 字符串中获得完整的响应数据。但是当服务器响应数据很大(> 112KB)时,它会被修剪到 48KB,并且我的整个多部分数据解析都失败了。

我应该怎么做才能在 $response string 中获取整个 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);

请帮忙,我在这里做错了什么。

4

0 回答 0