网站地图    收藏   

主页 > php专栏 > php函数大全 >

php中 getservbyport getservbyname函数实例 - php函数

来源:自学PHP网    时间:2014-11-25 00:26 作者: 阅读:

[导读] stringgetservbyport(int$port,string$protocol)*/$services=array(#39;80#39;,#39;21#39;,#39;22#39;,#39;23#39;,#39;25#39;,#......

php中 getservbyport getservbyname函数实例

  1. string getservbyport ( int $port , string $protocol ) 
  2.  
  3. */ 
  4. $services=array('80','21','22','23','25','143');      //定义数组 
  5. foreach($services as $service)         //循环读取内容 
  6.   $protocol=getservbyport($service,'tcp');       //返回端口号对应的协议 
  7.   echo $service.":".$protocol."<br/>n";       //输出结果 
  8.  
  9. /* 
  10. int getservbyname ( string $service , string $protocol ) 
  11. */ 
  12.  
  13. $services=array('http','ftp','ssh','telnet','imap'
  14. 'smtp','nicname','gopher','finger','pop3','www');       //定义一个数组 
  15. foreach($services as $service)          //循环读取内容 
  16.   $port=getservbyname($service,'tcp');        //获取数组元素对应端口 
  17.   echo $service.":".$port."<br/>n";         //输出结果 
  18.   //开源代码phpfensi.com 
  19. }

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论