PHP - getmxrr 函数



语法

bool getmxrr ( string $hostname , array &$mxhosts [, array &$weight ] )

定义和用法

它用于获取主机上的 MX 记录。

返回值

如果找到记录,它将返回 True,否则将返回 false。

示例

尝试以下示例

<?php
   getmxrr("tutorialspoint.com", $mx_records, $mx_weight);
   for($i = 0;$i<count($mx_records);$i++){
      $mxs[$mx_records[$i]] = $mx_weight[$i];
   }
   asort ($mxs);
   $records = array_keys($mxs);
   for($i = 0; $i < count($records); $i++){
      echo $records[$i];
      echo '<br/>';
   }
?>

以上示例的结果如下所示

ASPMX.L.GOOGLE.com
ALT2.ASPMX.L.GOOGLE.com
ALT1.ASPMX.L.GOOGLE.com
ALT4.ASPMX.L.GOOGLE.com
ALT3.ASPMX.L.GOOGLE.com
php_function_reference.htm
广告