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

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-01 12:26:531161browse

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");
}
?>
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