PHP Conference Japan 2024

getservbyport

(PHP 4, PHP 5, PHP 7, PHP 8)

getservbyport获取与端口和协议对应的互联网服务

描述

getservbyport(int $port, string $protocol): string|false

getservbyport() 根据 /etc/services 返回与指定 protocolport 关联的互联网服务。

参数

port

端口号。

protocol

protocol"tcp""udp"(小写)。

返回值

返回互联网服务名称(字符串),失败则返回 false

参见

添加注释

用户贡献的注释 1 个注释

paland at stetson dot edu
24年前
示例
<?php $value = getservbyport(137, "udp"); ?>

getservbyname() 同理
To Top