Hello,
I wish to request some sanity checks on file_get_html function to check if the remote URL exists and whatnot. Perhaps something like:
$myheaders = get_headers($url); if (substr($myheaders[0], 9, 3) == '404') return false;
can be a place to start.