我正试图在四处找到所有链接,然后印刷这些链接。
我正在使用简单的“超文本”来复制“超文本”文件。 在这方面,我要宣读直线评论,让我知道我在哪里错了。
include( simple_html_dom.php );
$html = file_get_html( tester.html );
$articles = array();
//find the div the div with the id abcde
foreach($html->find( #abcde ) as $article) {
//find all a tags that have a href in the div abcde
foreach($article->find( a[href] ) as $link){
//if the href contains singer then echo this link
if(strstr($link, singer )){
echo $link;
}
}
}
目前发生的情况是,上述装备需要很长时间才能装满(无论何时必须填满)。 我印刷了它在每一处所做的事情,因为等待时间太长,我发现,它通过事情我不需要! 这表明我的法典是错误的。
沉默基本上就是这样:
<div id="abcde">
<!-- lots of html elements -->
<!-- lots of a tags -->
<a href="singer/tom" />
<img src="image..jpg" />
</a>
</div>
感谢一切帮助