(PHP 4, PHP 5, PHP 7)
getservbyname — ��ȡ����������Э���Ӧ�Ķ˿�
$service
, string $protocol
) : int
getservbyname()
���ػ��������� service
ָ����Э�� protocol
�ж�Ӧ�Ķ˿ڣ�
���� /etc/services��
service
�������������Ƶ��ַ�����
protocol
protocol
�ȿ����� "tcp"
Ҳ������ "udp" (Сд)��
���ض˿ںţ���� service
�� protocol
δ�ҵ����� FALSE
��
Example #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";
}
?>