I want to use simple_html_dom.php to do some work.
$html = file_get_html('http://www.domain.com');
foreach($html->find('p') as $element) {
echo $element;
}
I have 2 problems.
- How to add a judge if
failed to open stream: thenecho 'this is not a valid url';? - How to make a judge if there is no
ptag inforeach, thenecho 'Can not find p tag';?
Thanks.
try this: