目录

PHP getservbyport() 函数

❮ PHP 网络参考

示例

getservbyport() 示例:

<?php
$intservname = getservbyport(80, "tcp");
echo $intservname;
?>


定义和用法

getservbyport() 函数返回给定端口和协议的 Internet 服务。

语法

getservbyport( port, protocol)

参数值

Parameter Description
port Required. Specifies the port number (like 80)
protocol Required. Specifies a protocol name (like "tcp" or "udp")

技术细节

返回值: 成功时的互联网服务名称
PHP 版本: 4.0+

❮ PHP 网络参考