php curl 获取信息不完整

WBOY
Release: 2016-06-23 13:43:59
Original
1104 people have browsed it

用 php curl 获取页面数据,页面有1000条数据,有时候可以获得1000条,有时候获得500条,600条,
有时候会不完整,求解,这是为啥

$ch = curl_init();            curl_setopt ($ch, CURLOPT_URL, $url);           curl_setopt ($ch, CURLOPT_COOKIEJAR, "c:\cookie.txt");       curl_setopt ($ch, CURLOPT_HEADER, 1);       curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);       curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);	   curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));       curl_setopt ($ch, CURLOPT_TIMEOUT, 120);       $result = curl_exec ($ch);       curl_close($ch);     echo $result;
Copy after login


回复讨论(解决方案)

curl_setopt ($ch, CURLOPT_TIMEOUT, 120);

???300看看。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template