mirror of
https://github.com/danog/dns.git
synced 2024-11-26 20:14:51 +01:00
ec1cf1681a
This is an automated commit. Please report any issues to https://github.com/amphp/website-tools. |
||
---|---|---|
docs | ||
examples | ||
lib | ||
test | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
.gitmodules | ||
.php_cs.dist | ||
.travis.yml | ||
appveyor.yml | ||
composer.json | ||
CONTRIBUTING.md | ||
LICENSE | ||
Makefile | ||
phpunit.xml.dist | ||
README.md |
dns
amphp/dns
provides asynchronous DNS name resolution for Amp.
Installation
composer require amphp/dns
Example
<?php
require __DIR__ . '/vendor/autoload.php';
use Amp\Dns;
use Amp\Loop;
Loop::run(function () {
$githubIpv4 = yield Dns\resolve("github.com", Dns\Record::A);
var_dump($githubIpv4);
$googleIpv4 = Amp\Dns\resolve("google.com", Dns\Record::A);
$googleIpv6 = Amp\Dns\resolve("google.com", Dns\Record::AAAA);
$firstGoogleResult = yield Amp\Promise\first([$googleIpv4, $googleIpv6]);
var_dump($firstGoogleResult);
$combinedGoogleResult = yield Amp\Dns\resolve("google.com");
var_dump($combinedGoogleResult);
$googleMx = yield Amp\Dns\query("google.com", Amp\Dns\Record::MX);
var_dump($googleMx);
});