<?php

// http://simplehtmldom.sourceforge.net/
include "lib/simple_html_dom.php";

$url = "https://hiseon.me";

// HTML 객체 생성
$html = file_get_html($url);

foreach($html->find('a') as $a) {
  echo $a-> innertext . " :: ". $a->href. "\n";
}

?>