1
0
mirror of https://github.com/danog/dns.git synced 2025-01-23 05:51:11 +01:00
dns/examples/ptr-record.php

17 lines
286 B
PHP
Raw Normal View History

<?php
require __DIR__ . "/_bootstrap.php";
use Amp\Dns;
use Amp\Loop;
Loop::run(function () {
$ip = "8.8.8.8";
try {
pretty_print_records($ip, yield Dns\query($ip, Dns\Record::PTR));
} catch (Dns\DnsException $e) {
pretty_print_error($ip, $e);
}
});