Home > php教程 > php手册 > 怎么利用PHP去ping一个地址

怎么利用PHP去ping一个地址

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 10:25:33
Original
808 people have browsed it




怎么利用PHP去ping一个地址






if(($server == 127.0.0.1) | | ($server == localhost) | | ($server == getenv("SERVER_ADDR"))) {
echo "
";
echo "Fuck Off!
";
echo "
";
exit;
} else {
if($server =="") {
echo "

请输入url或ip地址:

";

exit;
}
$ip = getenv("REMOTE_ADDR");
$hname = getenv("HTTP_HOST");
echo "Your IP is: $ip
"
."Trying to ping: $server
"
."Using server: $hname";
echo "
";
echo "STATS:
";
$command = "ping -c4 $server";
exec($command, $result, $rval);
if(count($result) echo "没有响应
";
echo "
";
exit;
}
for ($i = 0; $i echo "$result[$i]
";
}
echo "
";#include("powered.txt");}?>
Related labels:
Statement of this Website
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
Latest Issues
Framework error
From 1970-01-01 08:00:00
0
0
0
Can anyone help me take a look?
From 1970-01-01 08:00:00
0
0
0
Composer cannot install laravel
From 1970-01-01 08:00:00
0
0
0
homestead - laravel new app reports error
From 1970-01-01 08:00:00
0
0
0
composer installation failed
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template