如何使用 PHP Ping 服务器端口?

Linda Hamilton
发布: 2024-10-18 11:03:02
原创
1043 人浏览过

How to Ping a Server Port with PHP?

Pinging a Server Port with PHP

In PHP, you can utilize the fsockopen() function to check whether a server accepts TCP connections on a specified port. Here's how:

$host = '193.33.186.70';
$port = 80;
$waitTimeoutInSeconds = 1;
if($fp = fsockopen($host,$port,$errCode,$errStr,$waitTimeoutInSeconds)){
   // It worked
} else {
   // It didn't work
}
fclose($fp);
登录后复制

This script will determine if the server at the given IP address is accepting HTTP connections on port 80.

Note: This approach is specific to TCP connections. Other protocols like UDP have different characteristics that require more complex pinging mechanisms.

Customized Pinging

If you require more specific pinging capabilities, consider the following script:

function pingDomain($domain){
    $starttime = microtime(true);
    $file      = fsockopen ($domain, 80, $errno, $errstr, 10);
    $stoptime  = microtime(true);
    $status    = 0;

    if (!$file) $status = -1;  // Site is down
    else {
        fclose($file);
        $status = ($stoptime - $starttime) * 1000;
        $status = floor($status);
    }
    return $status;
}
登录后复制

This script provides a ping response in milliseconds, indicating the server's latency. You can use this script to monitor game server availability and response times.

以上是如何使用 PHP Ping 服务器端口?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!