Home  >  Article  >  Backend Development  >  php curl 获取信息不完整,该怎么解决

php curl 获取信息不完整,该怎么解决

WBOY
WBOYOriginal
2016-06-13 12:11:041665browse

php curl 获取信息不完整

本帖最后由 hilives 于 2014-12-03 11:48:07 编辑 用 php curl 获取页面数据,页面有1000条数据,有时候可以获得1000条,有时候获得500条,600条,
有时候会不完整,求解,这是为啥
<br />$ch = curl_init();<br />     <br />       curl_setopt ($ch, CURLOPT_URL, $url);<br />    <br />       curl_setopt ($ch, CURLOPT_COOKIEJAR, "c:\cookie.txt");<br />       curl_setopt ($ch, CURLOPT_HEADER, 1);<br />       curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />       curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);<br />	   curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));<br />       curl_setopt ($ch, CURLOPT_TIMEOUT, 120);<br />       $result = curl_exec ($ch);<br />       curl_close($ch);<br />     echo $result;<br /><br /><br />

------解决思路----------------------
curl_setopt ($ch, CURLOPT_TIMEOUT, 120);

這個設300看看。
Statement:
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