php中getservbyport与getservbyname函数用法实例

前端之家收集整理的这篇文章主要介绍了php中getservbyport与getservbyname函数用法实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP中getservbyport与getservbyname函数用法分享给大家供大家参考。具体如下:

代码如下:
*/
$services=array('80','21','22','23','25','143'); //定义数组
foreach($services as $service) //循环读取内容
{
$protocol=getservbyport($service,'tcp'); //返回端口号对应的协议
echo $service.":".$protocol."
n"; //输出结果
}

/
int getservbyname ( string $service,string $protocol )
/

$services=array('http','ftp','ssh','telnet','imap',
'smtp','nicname','gopher','finger','pop3','www'); //定义一个数组
foreach($services as $service) //循环读取内容
{
$port=getservbyname($service,'tcp'); //获取数组元素对应端口
echo $service.":".$port."
n"; //输出结果
}

希望本文所述对大家的PHP程序设计有所帮助。

原文链接:https://www.f2er.com/php/23378.html

猜你在找的PHP相关文章