PHP/DNS/dns get mx — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 10:37, 26 мая 2010

Using the dns_get_mx() Function

 
<?php
    $hostname = "google.ru";
    if(dns_get_mx($hostname, $mxhosts, $weights)) {
        foreach($mxhosts as $key => $host) {
            echo "Hostname: $host (Weight: {$weights[$key]}<BR/>\n";
        }
    } else {
        echo "Could not find any MX records for $hostname\n";
    }
?>