Home > Backend Development > PHP Tutorial > 怎么利用PHP去ping一个地址_PHP

怎么利用PHP去ping一个地址_PHP

WBOY
Release: 2016-06-01 12:26:53
Original
1153 people have browsed it

Ping



怎么利用PHP去ping一个地址














怎么利用PHP去ping一个地址
请输入url或ip地址:
?lt;/td>


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:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template