Skip to content

Instantly share code, notes, and snippets.

@xombra
Created January 1, 2015 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save xombra/4f3949027e6e6f1ec492 to your computer and use it in GitHub Desktop.
Save xombra/4f3949027e6e6f1ec492 to your computer and use it in GitHub Desktop.
#
# verifica si una pagina esta online o existe
#
function VERIFICA_ONLINE($url)
{ @$headers = get_headers($url);
if (stristr ($headers[0],'200 OK'))
{ return true; }
else { return false; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment