vote up 1 vote down star

Hello,

I'm using SimpleHTMLDOM Parser to scape a website and I would like to know if there's any error handling method. For example, if the link is broken there is no use to advance in the code and search the document.

Thank you.

flag

33% accept rate

2 Answers

vote up 0 vote down

a loop and continue?

link|flag
vote up 0 vote down
<?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";
}
?>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.