mirror of
https://github.com/danog/dns.git
synced 2024-11-26 20:14:51 +01:00
ebb5fb510c
This now can do queries to dns servers and you'll get the list of raw records in an array
12 lines
321 B
PHP
12 lines
321 B
PHP
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
|
|
if (ini_get("opcache.enable") == true &&
|
|
ini_get("opcache.save_comments") == false) {
|
|
echo "Cannot run tests. OPCache is enabled and is stripping comments, which are required by PHPUnit to provide data for the tests.\n";
|
|
exit(-1);
|
|
}
|