Created
December 14, 2013 20:42
-
-
Save alemohamad/7964685 to your computer and use it in GitHub Desktop.
Check if a website is available
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ini_set("default_socket_timeout", "05"); | |
set_time_limit(5); | |
$f = fopen("http://github.com", "r"); | |
$r = fread($f, 1000); | |
fclose($f); | |
if (strlen($r) > 1) { | |
echo "Online"; | |
} else { | |
echo "Offline"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment