我正在学习使用 PHP- 蜘蛛网站内容file_get_contents
,但出了点问题。我想要的网络是“ http://www.jandan.net ”。
但是使用file_get_content()
,我从“ http://i.jandan.net ”获取内容(这是电话页面,它们是不同的页面)。user_agent
也无法使用。
<?php
ini_set("user_agent","Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2) Gecko/20100301 Ubuntu/9.10 (karmic) Firefox/3.6");
$url = 'http://www.jandan.net/';
/*
$opt = array( 'http'=>array(
'method'=>"GET",
'header'=>"User-Agent: Mozilla/5.0\n"
)
);
$context = stream_context_create($opt);
*/
$content = file_get_contents($url);
echo var_dump($content);
?>