如果您输入
nslookup -type=SRV _xmpp-server._tcp.gmail.com
(或使用OSX中的dig命令)您可以获得与谷歌聊天相关的一些SRV记录
我想在PHP中复制这个功能,有没有人有任何好主意如何做到这一点?
我想避免使用exec(),因为这不会在OSX / * NIX / WINDOWS上返回100%标准响应
谢谢!
答案 0 :(得分:9)
有dns_get_record()
。根据文档,它可以采用int $type
参数,它引用一组常量,其中一个是DNS_SRV
。
答案 1 :(得分:8)
您可以使用Pear Net_DNS。我设法让它在Linux上运行,但尚未在Windows或其他任何方面进行测试:
require_once('Net/DNS.php');
$resolver = new Net_DNS_Resolver();
$response = $resolver->query('_xmpp-server._tcp.gmail.com', 'SRV');
if ($response) {
foreach ($response->answer as $rr) {
$rr->display();
}
}
我从他们的文档中修改了示例。希望这有帮助