php中getservbyport与getservbyname函数用法实例

复制代码 代码如下:


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";         //输出结果
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/336b4107faf8a0b913d6d02e9406c008.html