php中 getservbyport getservbyname函数实例
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-19 15:43:52 浏览: 评论:0
- 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
- }
Tags: getservbyport getservbyname
相关文章
- ·php中getservbyport与getservbyname函数用法实例(2021-04-26)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)