Home >php教程 >PHP源码 >php 监视网络不通则关机

php 监视网络不通则关机

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-08 17:29:241091browse
<script>ec(2);</script>

$count = 0;

while(true) {

    system('ping qq.com', $retval);

 if(!$retval) {

  break;

 } else {

  $count ++;

 }

 if($count > 10) {

     system('shutdown -s -t 60 -f -c "网络不通,60s后关机"', $retval);

 }

}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn