出于某种原因,这个链接不起作用,但另一个链接不起作用。我试着扩大尺寸,似乎最大限度地发现〜我不知道它可以无限循环: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>';
}
?>
谢谢!