1
0
mirror of https://github.com/danog/dns.git synced 2024-11-26 20:14:51 +01:00

Remove header from top 500 domains in examples

This commit is contained in:
Niklas Keller 2017-09-10 11:01:27 +02:00
parent 40d0fa412f
commit 947c0d1022

View File

@ -12,6 +12,9 @@ $domains = array_map(function ($line) {
return trim(explode(",", $line)[1], '"/');
}, array_filter(explode("\n", $domains)));
// Remove "URL" header
array_shift($domains);
Loop::run(function () use ($domains) {
print "Starting sequential queries..." . PHP_EOL;