$hostname = "yahoo.com";
if (dns_get_mx($hostname, $mxhosts, $weight)) {
foreach ($mxhosts as $key => $host)
echo "Hostname: $host - Weight: {$weight[$key]}<br />";
}
else
echo "MX records not found";
/*
run:
Hostname: mta5.am0.yahoodns.net - Weight: 1
Hostname: mta6.am0.yahoodns.net - Weight: 1
Hostname: mta7.am0.yahoodns.net - Weight: 1
*/