php中 getservbyport getservbyname函数实例
发布时间:2022-06-16 09:57:04 所属栏目:PHP教程 来源:互联网
导读:string getservbyport ( int $port , string $protocol ) */ $services=array(80,21,22,23,25,143); //定义数组 foreach($services as $service) //循环读取内容 { $protocol=getservbyport($service,tcp); //返回端口号对应的协议 echo $service.:.$protoco
string getservbyport ( int $port , string $protocol ) */ $services=array('80','21','22','23','25','143'); //定义数组 foreach($services as $service) //循环读取内容 { $protocol=getservbyport($service,'tcp'); //返回端口号对应的协议 echo $service.":".$protocol."<br/>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."<br/>n"; //输出结果 //开源代码phpfensi.com } (编辑:济源站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |