Periksa koneksi jaringan PHP

$response = null;
system("ping -c 1 google.com", $response);
if($response == 0)
{
    // this means you are connected
}
Underlyingglitch