diff --git a/examples/benchmark.php b/examples/benchmark.php index 71275a4..5c153d1 100644 --- a/examples/benchmark.php +++ b/examples/benchmark.php @@ -7,7 +7,7 @@ use Amp\Loop; print "Downloading top 500 domains..." . PHP_EOL; -$domains = \file_get_contents("https://moz.com/top500/domains/csv"); +$domains = \file_get_contents("https://moz.com/top-500/download?table=top500Domains"); $domains = \array_map(function ($line) { return \trim(\explode(",", $line)[1], '"/'); }, \array_filter(\explode("\n", $domains)));