目录

PHP getmxrr() 函数

❮ PHP 网络参考

示例

邮件交换器记录(MX记录)返回详细信息:

<?php
$domain="91xjr.com";
if(getmxrr($domain,$mx_details)){
  foreach($mx_details as $key=>$value){
    echo "$key => $value <br>";
  }
}
?>


定义和用法

getmxrr() 函数返回指定互联网主机名的 MX 记录。

语法

getmxrr( host, mxhosts, weight)

参数值

Parameter Description
host Required. Specifies the host name
mxhosts Required. An array that specifies a list of MX records found
weight Optional. An array that specifies the weight information gathered


技术细节

返回值: 如果找到任何记录则为 TRUE,否则为 FALSE
PHP 版本: 4.0+
PHP 变更日志: PHP 5.3:现在可在 Windows 平台上使用

❮ PHP 网络参考