getservbyname
(PHP 4, PHP 5, PHP 7, PHP 8)
getservbyname — インターネットサービスおよびプロトコルが関連するポート番号を取得する
説明
getservbyname() は、
/etc/services に基づき
指定したプロトコル protocol
に関して
service
に対応するインターネットポートを返します。
パラメータ
service
-
インターネットサービス名を表す文字列。
protocol
-
protocol
は"tcp"
あるいは"udp"
(小文字) のいずれかです。
戻り値
ポート番号を返します。 service
あるいは
protocol
が見つからない場合は
false
を返します。
例
例1 getservbyname() の例
<?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";
}
?>
参考
- getservbyport() - ポートおよびプロトコルに対応するインターネットサービスを得る
- ポート番号の完全なリストは » http://www.iana.org/assignments/port-numbers
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google