首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

哪位高手能用curl或file_get_contents获取这个网页的内容

2012-08-30 
谁能用curl或file_get_contents获取这个网页的内容?http://zhaohongen.fu.cn8u.cn/v.html如果能请不方法告

谁能用curl或file_get_contents获取这个网页的内容?
http://zhaohongen.fu.cn8u.cn/v.html
如果能请不方法告诉我,不胜感激!!

[解决办法]
他这是有一个点击后的跳转,不是自己写了个header跳转.
看了一下代码 其实就是掩人耳目

使用curl来访问。只需要 第一次访问这个页面保存好cookie 再刷新一次页面 带上cookie 即可.
完全使用cookie 来控制,试我就不试了

你可以在浏览器先打开 http://zhaohongen.fu.cn8u.cn/v.html 再打开一个tab 然后访问 http://zhaohongen.fu.cn8u.cn/v.html

内容就出来了,清除掉cookie 就又不行了 又得重复上面我说的步骤,所以只要控制了cookie就可以了

[解决办法]
真纠结,,妞妞都说了,cookie问题

PHP code
$cookie_file = dirname(__FILE__).'/cookie.txt';if(!file_exists($cookie_file)){    $fp= fopen($cookie_file,"w");    fclose($fp);}$url = "http://zhaohongen.fu.cn8u.cn/v.html";$ch = curl_init($url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_COOKIEJAR,  $cookie_file); curl_exec($ch);curl_close($ch);$url = "http://zhaohongen.fu.cn8u.cn/v.html";$ch = curl_init($url);curl_setopt($ch, CURLOPT_HEADER, 0);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file); $response = curl_exec($ch);curl_close($ch);echo $response; 

热点排行