简单的HTML DOM Parser错误处理

时间:2009-08-26 09:26:17

标签: php simple-html-dom

我正在使用SimpleHTMLDOM Parser浏览网站,我想知道是否有任何错误处理方法。例如,如果链接断开,则无需在代码中前进并搜索文档。

谢谢。

2 个答案:

答案 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)

循环并继续?