我正在使用SimpleHTMLDOM Parser浏览网站,我想知道是否有任何错误处理方法。例如,如果链接断开,则无需在代码中前进并搜索文档。
谢谢。
答案 0 :(得分:2)
<?php
$html = file_get_html('http://www.google.com/');
foreach($html->find('a') as $element)
{
if(empty($element->href))
{
continue; //will skip <a> without href
}
echo $element->href . "<br>\n";
}
?>
答案 1 :(得分:0)
循环并继续?