Query: getservbyname
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GETSERVBYNAME(3) 1 GETSERVBYNAME(3) getservbyname - Get port number associated with an Internet service and protocolSYNOPSISint getservbyname (string $service, string $protocol)DESCRIPTIONgetservbyname(3) returns the Internet port which corresponds to $service for the specified $protocol as per /etc/services.PARAMETERSo $service - The Internet service name, as a string. o $protocol -$protocol is either "tcp" or "udp" (in lowercase).RETURN VALUESReturns the port number, or FALSE if $service or $protocol is not found.EXAMPLESExample #1 getservbyname(3) example <?php $services = array('http', 'ftp', 'ssh', 'telnet', 'imap', foreach ($services as $service) { $port = getservbyname($service, 'tcp'); echo $service . ": " . $port . "<br /> "; } ?>SEE ALSOgetservbyport(3), http://www.iana.org/assignments/port-numbers for a complete list of port numbers. . PHP Documentation Group GETSERVBYNAME(3)
Related Man Pages |
---|
endservent(3n) - bsd |
getservbyname(3n) - bsd |
getservbyport(3n) - bsd |
setservent(3n) - bsd |
getservent(3) - netbsd |
Similar Topics in the Unix Linux Community |
---|
getservbyname returning NULL |