Skip to content

Instantly share code, notes, and snippets.

@dimmduh
Created June 1, 2012 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dimmduh/2852941 to your computer and use it in GitHub Desktop.
Save dimmduh/2852941 to your computer and use it in GitHub Desktop.
<?php
function url_exists($url) {
$headers = @get_headers($url);
return ($headers[0] == 'HTTP/1.1 200 OK' || $headers[0] == 'HTTP/1.0 200 OK');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment