How to check if a URL exists in PHP

2 Answers

0 votes
/*
array get_headers ( string $url [, int $format = 0 ] )
*/  
  
$url = "http://www.collectivesolver.com/questions";
$headers = @get_headers($url);
//print_r($headers);
if (strpos($headers[0], "404 Not Found"))
    echo "404 Not Found - URL NOT exists";
else 
    echo "200 OK - URL exists";

/*
run:
  
200 OK - URL exists

*/


answered May 24, 2014 by avibootz
edited Dec 16, 2015 by avibootz
0 votes
/*
resource curl_init ([ string $url = NULL ] )
*/  
  
function url_exists($url) 
{
    if (!$fp = curl_init($url)) return false;
    
    return true;
}

if (url_exists("http://www.collectivesolver.com"))
    echo "exits<br>";
else
    echo "NOT exist<br>";

/*
run:
  
exits

*/


answered Nov 3, 2014 by avibootz
edited Dec 16, 2015 by avibootz

Related questions

1 answer 275 views
2 answers 1,156 views
2 answers 229 views
1 answer 147 views
1 answer 149 views
...