PHP - 让服务器 ping 访客 IP 并在毫秒内返回 ping

发布于 2024-12-06 13:04:31 字数 161 浏览 0 评论 0原文

我想做的就像标题所说的那样。 ping 用户 IP 并以毫秒为单位返回结果,例如:

Ping IP 返回400ms。

我不知道如何做到这一点,但我希望它会相对简单。我可以访问 exec() 函数和类似的函数,因为我将在虚拟专用服务器上运行此脚本。

提前致谢。

I want to do as the title states. To ping a users IP and return a result in ms, for instance:

Ping IP
return 400ms.

I have no idea how to do this but I expect it would be relatively simple. I have access to the exec() function and the functions similar to it as I will be running this script on a virtual private server.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倒带 2024-12-13 13:04:31

试试这个

<?php

$out = array();
exec('ping -c 4 '.$_SERVER['REMOTE_ADDR'], $out);
print_r($out);

?>

try this

<?php

$out = array();
exec('ping -c 4 '.$_SERVER['REMOTE_ADDR'], $out);
print_r($out);

?>
零度° 2024-12-13 13:04:31

试试这个:

<?php

$ip     = $_SERVER['SERVER_ADDR'];  // Get the IP address of the visitor
$result = system('ping -n 1 '.$ip, $retval); // the result contains the last line of the ping command.

if ($retval==0) echo "OK";
if ($retval==1) echo "NOT OK";

?>

Try this:

<?php

$ip     = $_SERVER['SERVER_ADDR'];  // Get the IP address of the visitor
$result = system('ping -n 1 '.$ip, $retval); // the result contains the last line of the ping command.

if ($retval==0) echo "OK";
if ($retval==1) echo "NOT OK";

?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文