0

我不太擅长 php,但我正在尝试学习爬虫的功能。我试图在这个网站http://www.makeuseof.com/tag/build-basic-web-crawler-pull-information-website/中应用我对爬虫的了解

在我继续执行 example2 之前,一切都很好。我收到了这个错误

解析错误:语法错误,第 7 行的 example2.php 中出现意外的“>”

从这段代码

<?php
include_once('simple_html_dom.php');
$target_url = “localhost/wordpress”;
$html = new simple_html_dom();
$html->load_file($target_url);
foreach($html->find(‘a’) as $link){
echo $link->href.”&lt;br/>”;
}
?>

我知道这是一个简单的 php,但对于像我这样的菜鸟,我不确定我应该在哪里查看。希望你能帮忙。谢谢你

4

1 回答 1

4

这里。

<?php
include_once('simple_html_dom.php');
$target_url = 'localhost/wordpress';
$html = new simple_html_dom();
$html->load_file($target_url);
foreach($html->find('a') as $link){
    echo $link->href.'<br/>';
}
?>

严肃地说,在显示代码的网站上,不恰当的引用应该是非法的。

于 2013-05-03T17:00:03.350 回答