pulse/parse.php

8 lines
133 B
PHP
Raw Normal View History

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