当前位置:Gxlcms > PHP教程 > PHP+Ajax实时自动检测是否联网的实现代码

PHP+Ajax实时自动检测是否联网的实现代码

时间:2021-07-01 10:21:17 帮助过:1人阅读

  1. PHP+Ajax实时自动检测是否联网-bbs.it-home.org
  2. PHP+Ajax实时自动检测是否联网

  3. 当前网络状态:

2,php代码

  1. //检测网络连接,是否已联网
  2. public function getNetLink(){
  3. header("cache-control:no-cache,must-revalidate");
  4. header("Content-Type:text/html;charset=utf-8");
  5. $file=fopen("http://bbs.it-home.org/", "r");
  6. if (!$file){
  7. $shownetlink = "网络连接失败";
  8. }else{
  9. $shownetlink = "网络连接正常";
  10. }
  11. echo $shownetlink;
  12. }

人气教程排行