PHP/Network/dns get record
Версия от 10:37, 26 мая 2010; (обсуждение)
dnsgetrecord-2.php
<?php
$result = dns_get_record("example.ru","DNS_CNAME");
print_r($result);
?>
dnsgetrecord.php
<?php
$result = dns_get_record("example.ru");
print_r($result);
?>