Skip to content

Instantly share code, notes, and snippets.

@alemohamad
Created December 14, 2013 20:42
Show Gist options
  • Save alemohamad/7964685 to your computer and use it in GitHub Desktop.
Save alemohamad/7964685 to your computer and use it in GitHub Desktop.
Check if a website is available
<?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