PHP+Ajax实时自动检测是否联网的实现代码
时间:2021-07-01 10:21:17
帮助过:1人阅读
-
-
-
- PHP+Ajax实时自动检测是否联网-bbs.it-home.org
-
-
-
-
PHP+Ajax实时自动检测是否联网 当前网络状态: -
2,php代码
- //检测网络连接,是否已联网
- public function getNetLink(){
- header("cache-control:no-cache,must-revalidate");
- header("Content-Type:text/html;charset=utf-8");
- $file=fopen("http://bbs.it-home.org/", "r");
- if (!$file){
- $shownetlink = "网络连接失败";
- }else{
- $shownetlink = "网络连接正常";
- }
- echo $shownetlink;
- }
|