Answers for "check network connection php"

PHP
1

check network connection php

$response = null;
system("ping -c 1 google.com", $response);
if($response == 0)
{
    // this means you are connected
}
Posted by: Guest on April-08-2020

Code answers related to "check network connection php"

Browse Popular Code Answers by Language