Skip to content

Instantly share code, notes, and snippets.

@goosewoman
Created January 14, 2013 13:15
Show Gist options
  • Save goosewoman/4529987 to your computer and use it in GitHub Desktop.
Save goosewoman/4529987 to your computer and use it in GitHub Desktop.
<?php
function isup($host, $port=25565, $timeout=5) {
$fp = fsockopen($host, $port, $errno, $errstr, $timeout);
if (!$fp) return false;
$online = fwrite($fp, "\xFE");
return $online;
}
$online = isup("mc.ecocitycraft.com");
if ($online){
echo "The server is online";
} else {
echo "The server is offline";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment