<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