使用 Zend Framework 的 TCP 套接字
我想使用 PHP 查询 WHOIS 服务器。 这意味着我必须通过 TCP 连接到 WHOIS 服务器上的端口 43。 有没有办法使用 ZEND 框架来做到这一点? 我只找到了 HTTP 套接字适配器。
如果 ZF 不提供包装类,我将使用本机 PHP 套接字函数来完成此操作。
谢谢 伦纳特
I want to query a WHOIS server with PHP. This means that I have to TCP connect to Port 43 on the WHOIS server. Is there a way to do this with the ZEND Framework? I only found HTTP socket adapters.
I will do it with the native PHP socket functions if ZF does not provide wrapper classes.
Thank you
Lennart
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
空无一人。 你最好的选择是普通的 php 套接字,或者你可以查看 phpclasses.org 来获取已经创建的 whois 类。
There is none. Your best bet is either plain php sockets, or you could check out phpclasses.org for already made whois classes.
为什么不使用 phpwhois 呢?
它与zend框架无关,但这应该没有问题。
why not using phpwhois for this?
It does not relate to zend framework, but this should be no problem.