1

我正在学习使用 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);
?>
4

1 回答 1

0

您的逗号$content = file_get_contents($url,);导致了问题。

-------------------------------------------------- ----------------------^

原始发布的代码---^

保留逗号将产生以下错误消息:

解析错误:语法错误,意外的 ')' in.....(文件夹路径等)

快速说明:使用$url = 'http://i.jandan.net/';也可以显示内容。

尝试这个:

<?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);
// echo $content;
?>
于 2013-08-21T16:24:50.960 回答