file_get_contents获取微博数据不稳定的解决方法

By | 2013 年 8 月 15 日

function c_file_get_contents($durl){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $durl);
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
curl_setopt($ch, CURLOPT_USERAGENT, _USERAGENT_);
curl_setopt($ch, CURLOPT_REFERER,_REFERER_);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$r = curl_exec($ch);
curl_close($ch);
return $r;
}

2 thoughts on “file_get_contents获取微博数据不稳定的解决方法

发表回复

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据