PHP file_get_html()$ html->查找(' a')不适用于某些网址

时间:2017-05-29 20:37:38

标签: php

出于某种原因,这个链接不起作用,但另一个链接不起作用。我试着扩大尺寸,似乎最大限度地发现〜我不知道它可以无限循环:S。

错误说: 致命错误:在第7行的/Applications/XAMPP/xamppfiles/htdocs/simplehtmldom_1_5/example/test.php中调用boolean上的成员函数find()

不能工作:

<?php

include('../simple_html_dom.php');

$html = file_get_html('http://www.watchepisodes4.com/the-flash');

foreach($html->find('a') as $e) {
    echo $e->href . '<br>';
}

?>

使用:

<?php

include('../simple_html_dom.php');

$html = file_get_html('http://www.watchepisodes4.com');

foreach($html->find('a') as $e) {
    echo $e->href . '<br>';
}

?>

谢谢!

0 个答案:

没有答案