目录

PHP dns_check_record() 函数

❮ PHP 网络参考

示例

检查 DNS 记录:

<?php
$domain="91xjr.com";
if(dns_check_record($domain,"MX")) {
  echo "Passed";
} else {
  echo "Failed";
}
?>


定义和用法

dns_check_record() 函数是 dns_check_record() 函数的别名检查dnsrr()功能。

语法

dns_check_record( host, type)

参数值

Parameter Description
host Required. Specifies an IP address or host name to check
type Optional. Specifies the type. Can be one of the following:
  • A
  • MX (default)
  • NS
  • SOA
  • PTR
  • CNAME
  • AAAA
  • A6
  • SRV
  • NAPTR
  • TXT
  • ANY


技术细节

返回值: 如果找到任何记录则为 TRUE,否则为 FALSE
PHP 版本: 5.0+

❮ PHP 网络参考