Network tools Library for PHP with native Yggdrasil / IPv6 support
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ghost df3342fc4b initial commit 6 months ago
src initial commit 6 months ago
.gitignore initial commit 6 months ago
LICENSE Initial commit 6 months ago
README.md initial commit 6 months ago
composer.json initial commit 6 months ago

README.md

dns-php

DNS Library for PHP with native Yggdrasil support

Install

composer require yggverse/dns

Usage

Resolve records

var_dump(
    \Yggverse\Dns\Dig::records('yo.index', ['A', 'AAAA'])
);

Check hostname valid

var_dump( \Yggverse\Dns\Dig::isHostName('yo.index') );

Check record valid

var_dump( \Yggverse\Dns\Dig::isRecord('A') );

Check record value valid

var_dump( \Yggverse\Dns\Dig::isRecordValue('A', '127.0.0.1') );