目录

PHP getservbyname() 函数

❮ PHP 网络参考

示例

getservbyname() 示例:

<?php
$portnum = getservbyname("http", "tcp");
echo $portnum;
?>


定义和用法

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

语法

getservbyname( service, protocol)

参数值

Parameter Description
service Required. Specifies the Internet service name (like "http")
protocol Required. Specifies a protocol name (like "tcp" or "udp")

技术细节

返回值: 成功时的端口号。失败时为 FALSE
PHP 版本: 4.0+

❮ PHP 网络参考