How to use PHP to ping an address
if(($server == 127.0.0.1) | | ($ server == localhost) | | ($server == getenv("SERVER_ADDR"))) {
echo "
";
echo "
Fuck Off!";
echo "
";
exit;
} else {
if($server =="") {
echo "
Please enter the url or ip address:
";
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 "
No response";
echo "
";
exit;
}
for ($i = 0; $i echo "
$result[$i]";
}
echo "
";#include("powered.txt");}?>
http://www.bkjia.com/PHPjc/532041.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/532041.htmlTechArticleHow to use PHP to ping an address if(($server == 127.0.0.1) | | ($server = = localhost) | | ($server == getenv("SERVER_ADDR"))) { echo " "; echo " Fuck Off! "; echo " "; exit; } el...
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