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 3a89da61d5 update project name 7 months ago
src update project name 7 months ago
.gitignore initial commit 7 months ago
LICENSE Initial commit 7 months ago
README.md update project name 7 months ago
composer.json update project name 7 months ago

README.md

net-php

Network Library for PHP with native Yggdrasil support

Install

composer require yggverse/net

Usage

Resolve records

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

Check hostname valid

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

Check record valid

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

Check record value valid

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