pulse/parse.php

8 lines
135 B
PHP
Raw Permalink Normal View History

2018-01-14 20:11:29 +00:00
<?php
2019-01-14 10:50:06 +00:00
foreach(file('combined.2.txt') as $row)
2018-01-14 20:11:29 +00:00
{
$row = trim($row);
$url = "http://$row/";
echo parse_url($url)['host'] . PHP_EOL;
}