getservbyname()函數(shù)獲取互聯(lián)網(wǎng)服務(wù)協(xié)議對應(yīng)的端口。
int getservbyname ( string $service , string $protocol )
getservbyname() 返回互聯(lián)網(wǎng)服務(wù) service 指定的協(xié)議 protocol 中對應(yīng)的端口, 依據(jù) /etc/services。
返回端口號,如果 service 或 protocol 未找到返回 FALSE。
參數(shù) | 說明 |
---|---|
service | 互聯(lián)網(wǎng)服務(wù)名稱的字符串。 |
protocol | protocol 既可以是 "tcp" 也可以是 "udp" (小寫)。 |
試試下面的實(shí)例,獲取互聯(lián)網(wǎng)服務(wù)協(xié)議對應(yīng)的端口 :
<?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"; } ?>