How do I check if a URL exists (not 404) in PHP?
$headers = @get_headers($this->_value); if(strpos($headers[0],'200')===false)return false;
so anytime you contact a website and get something else than 200 ok it will work