参见英文答案 > Determine in php script if connected to internet? 10个
如何从我的开发机器上运行的PHP脚本(不在某个服务器上)上检查我是否连接到互联网?
我运行脚本使用wget下载一组文件(可能存在也可能不存在).如果我在没有连接的情况下尝试下载wget,wget会继续下一个认为该文件不存在的内容,所以我需要在调用wget之前进行检查.
解决方法:
只需检查google.com是否可以访问:
<?PHP
if (!$sock = @fsockopen('www.google.com', 80, $num, $error, 5))
echo 'offline';
else
echo 'OK';
?>