getservbyname()函数获取互联网服务协议对应的端口。
int getservbyname ( string $service , string $protocol )
getservbyname() 返回互联网服务 service 指定的协议 protocol 中对应的端口, 依据 /etc/services。
返回端口号,如果 service 或 protocol 未找到返回 FALSE。
参数 | 说明 |
---|---|
service | 互联网服务名称的字符串。 |
protocol | protocol 既可以是 "tcp" 也可以是 "udp" (小写)。 |
试试下面的实例,获取互联网服务协议对应的端口 :
<?php $services = array('http', 'ftp', 'ssh', 'telnet', 'imap','smtp', 'nicname', 'gopher', 'finger', 'pop3', 'www'); foreach ($services as $service) { $port = getservbyname($service, 'tcp'); echo $service . ": " . $port . "<br />\n"; } ?>