Skip to content

Instantly share code, notes, and snippets.

@thotbox
Created September 17, 2014 16:15
Show Gist options
  • Save thotbox/b72a8d9d41f50a125f52 to your computer and use it in GitHub Desktop.
Save thotbox/b72a8d9d41f50a125f52 to your computer and use it in GitHub Desktop.
PHP: Test For Internet Connection
<?php
$connected = @fsockopen("www.workwiththey.com", 80);
if ($connected) {
echo "connected";
fclose($connected);
} else {
echo "not connected";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment