https://github.com/gurkanbicer/advanced-dns
It collects DNS results using dig command.
https://github.com/gurkanbicer/advanced-dns
advanced-dns dig-command dns packagist php
Last synced: 6 months ago
JSON representation
It collects DNS results using dig command.
- Host: GitHub
- URL: https://github.com/gurkanbicer/advanced-dns
- Owner: gurkanbicer
- License: mit
- Archived: true
- Created: 2019-08-14T13:03:19.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-07-31T18:51:53.000Z (almost 5 years ago)
- Last Synced: 2025-05-17T14:06:50.153Z (about 1 year ago)
- Topics: advanced-dns, dig-command, dns, packagist, php
- Language: PHP
- Size: 13.7 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advanced DNS
It collects DNS results using dig command.
### Supported DNS Query Types
- A
- AAAA
- CNAME
- MX
- NS
- SOA
- TXT
### Installation
```
composer require gurkanbicer/advanced-dns
```
```php
require 'vendor/autoload.php';
use \Gurkanbicer\AdvancedDns\AdvancedDns;
```
### Samples
#### Sample 1:
```php
$domain = new AdvancedDns('getdns.sh');
$result = $domain->lookup('NS', '8.8.8.8');
var_dump($result);
```
Output:
```
array(4) {
["type"]=>
string(2) "NS"
["status"]=>
string(7) "NOERROR"
["nameserver"]=>
string(7) "8.8.8.8"
["response"]=>
array(2) {
["amit.ns.cloudflare.com"]=>
array(2) {
["ttl"]=>
int(21599)
["data"]=>
array(1) {
[0]=>
string(13) "173.245.59.63"
}
}
["april.ns.cloudflare.com"]=>
array(2) {
["ttl"]=>
int(21599)
["data"]=>
array(1) {
[0]=>
string(13) "173.245.58.66"
}
}
}
}
```
#### Sample 2:
```php
$domain = new AdvancedDns('getdns.sh');
$result = $domain->authorityNameserverLookup();
var_dump($result);
```
Output:
```
array(4) {
["type"]=>
string(8) "DOMAINNS"
["response"]=>
array(2) {
["amit.ns.cloudflare.com"]=>
array(2) {
["ttl"]=>
int(86400)
["data"]=>
array(1) {
[0]=>
string(13) "173.245.59.63"
}
}
["april.ns.cloudflare.com"]=>
array(2) {
["ttl"]=>
int(86400)
["data"]=>
array(1) {
[0]=>
string(13) "173.245.58.66"
}
}
}
["status"]=>
string(7) "NOERROR"
["nameserver"]=>
string(9) "a2.nic.sh"
}
```
### Error Handling
```php
// if there is no error
if ($result !== false && $result['status'] == 'NOERROR') {
var_dump($result);
}
```
If there is no response that your queried host:
```
array(4) {
["type"]=>
string(4) "AAAA"
["status"]=>
string(7) "NOERROR"
["nameserver"]=>
string(7) "8.8.8.8"
["response"]=>
array(0) {
}
}
```
If somethings goes bad or if has not in the list that your query type, output will be like:
```
bool(false)
```