$input = @file_get_contents($url) or die('Could not access file: $url');
$regexp = "]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>";
$regexp = "
if(preg_match_all("/$regexp/siU", $input, $matches))
{
//# $matches[2] = array of link addresses # $matches[3] = array of link text - including HTML code
print_r($matches[2]);
}