Php/func network getservbyport
来自菜鸟教程
PHP getservbyport()函数
例
一个getservbyport()示例:
<?php $intservname = getservbyport(80, "tcp"); echo $intservname; ?>
定义和用法
getservbyport()函数返回给定端口和协议的Internet服务。
句法
getservbyport(port, protocol)
参数值
参数 | 描述 |
---|---|
port | 需要。指定端口号(如80) |
protocol | 需要。指定协议名称(例如“ tcp”或“ udp”) |
技术细节
返回值: | 成功时的Internet服务名称 |
PHP版本: | 4.0+ |