fork download
  1. <?php
  2. $urls = Array(
  3. "http://w...content-available-to-author-only...e.com/",
  4. "http://w...content-available-to-author-only...r.com/1/hi-hello",
  5. "http://w...content-available-to-author-only...e.com/index.php",
  6. "http://w...content-available-to-author-only...r.com/1/archive",
  7. "http://w...content-available-to-author-only...e.com/about.php",
  8. "http://w...content-available-to-author-only...r.com/"
  9. );
  10.  
  11. $urls_categorised = Array();
  12. foreach ($urls as $url) {
  13. $host = parse_url($url, PHP_URL_HOST);
  14. if ($url != $host)
  15. $urls_categorised[$host][] = $url;
  16. }
  17.  
  18. foreach ($urls_categorised as &$x) {
  19. if (!count($x))
  20. continue;
  21.  
  22. sort($x);
  23. print "{$x[0]}\n";
  24.  
  25. foreach ($x as $y)
  26. print "- {$y}\n";
  27. }
  28. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
http://w...content-available-to-author-only...e.com/
- http://w...content-available-to-author-only...e.com/about.php
- http://w...content-available-to-author-only...e.com/index.php
http://w...content-available-to-author-only...r.com/
- http://w...content-available-to-author-only...r.com/1/archive
- http://w...content-available-to-author-only...r.com/1/hi-hello