码迷,mamicode.com
首页 > 其他好文 > 详细

取代file_get_contents 的一个采集函数

时间:2015-04-14 00:13:44      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

 1 function url_get_content($url=‘‘){
 2 $ch = curl_init();
 3 $timeout = 100;
 4 $browser = ‘Mozilla/5.0 (Windows NT 5.1; rv:20.0) Gecko/20100101 Firefox/20.0‘;
 5 curl_setopt($ch, CURLOPT_USERAGENT, $browser);
 6 curl_setopt($ch, CURLOPT_URL, $url);
 7 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 8 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
 9 curl_setopt($ch, CURLOPT_ENCODING, "");
10 $contents = curl_exec($ch);
11 //    var_dump($contents);
12 curl_close($ch);
13 return $contents;
14 }

 

取代file_get_contents 的一个采集函数

标签:

原文地址:http://www.cnblogs.com/qzjpkfj/p/4423517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!