Piccolo script per ricercare tutti i link in una pagina web
$html = file_get_contents('http://www.example.com');
$dom = new DOMDocument();
@$dom->loadHTML($html);
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate("/html/body//a");
for($i=0;$i<$hrefs->length;$i++){
$href = $hrefs->item($i);
$url = $href->getAttribute('href');
echo $url.'<br/>';
}

