Skip to content

Instantly share code, notes, and snippets.

@MilkZoft
Created January 19, 2012 03:06
Show Gist options
  • Select an option

  • Save MilkZoft/1637421 to your computer and use it in GitHub Desktop.

Select an option

Save MilkZoft/1637421 to your computer and use it in GitHub Desktop.
codejobs - Ping - PHP
<?php
function ping($domain) {
$domain = str_replace("http://", "", $domain);
if(!@file_get_contents("http://" . $domain)) {
return FALSE;
} else {
return TRUE;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment