Determine in php script if connected to internet?

前端 未结 11 1020
轮回少年
轮回少年 2020-11-30 21:28

How can I check if I\'m connected to the internet from my PHP script which is running on my dev machine?

I run the script to download a set of files (which may or ma

11条回答
  •  伪装坚强ぢ
    2020-11-30 22:11

    This function handles what you need

    function isConnected()
    {
        // use 80 for http or 443 for https protocol
        $connected = @fsockopen("www.example.com", 80);
        if ($connected){
            fclose($connected);
            return true; 
        }
        return false;
    }
    

提交回复
热议问题