Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

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 228 views
2 answers 1,101 views
2 answers 177 views
1 answer 125 views
1 answer 124 views
...