描述
此函数告诉系统您不再希望使用gethostent从hosts文件读取条目。
语法
以下是此函数的简单语法-
endhostent
返回值
此函数不返回任何值。
例
以下是显示其基本用法的示例代码-
#!/usr/bin/perl while( ($name, $aliases, $addrtype, $length, @addrs)=gethostent() ) { print "Name =$name\n"; print "Aliases =$aliases\n"; print "Addr Type =$addrtype\n"; print "Length =$length\n"; print "Addrs =@addrs\n"; } sethostent(1); while( ($name, $aliases, $addrtype, $length, @addrs)=gethostent() ) { print "Name =$name\n"; print "Aliases =$aliases\n"; print "Addr Type =$addrtype\n"; print "Length =$length\n"; print "Addrs =@addrs\n"; } endhostent(); # Closes the database;
执行上述代码后,将产生以下输出-文章来源:https://www.toymoban.com/news/detail-635883.html
Name =ip-50-62-147-141.ip.secureserver.net Aliases =ip-50-62-147-141 localhost.secureserver.net localhost.localdomain localhost Addr Type =2 Length =4 Addrs = Name =ip-50-62-147-141.ip.secureserver.net Aliases =ip-50-62-147-141 localhost.secureserver.net localhost.localdomain localhost Addr Type =2 Length =4 Addrs =
Perl 中的 endhostent函数 - 无涯教程网无涯教程网提供描述此函数告诉系统您不再希望使用gethostent从hosts文件读取条目。 语法以下是此函数...https://www.learnfk.com/perl/perl-endhostent.html文章来源地址https://www.toymoban.com/news/detail-635883.html
到了这里,关于无涯教程-Perl - endhostent函数的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!