Experimentando con codigos ajenos logre lo que queria!
O al menos eso parece jejeje...
Aqui esta el codigo por si alguien lo necesita.
Código PHP:
Ver original<?php
$url = "http://www.google.com";
$var = fread_url($url);
"(.*?)[\"\']+.*?>"."([^<]+|.*?)?<\/a>/",
$var, &$matches);
$matches = $matches[1];
// The fread_url function allows you to get a complete
// page. If CURL is not installed replace the contents with
// a fopen / fget loop
function fread_url($url,$ref="")
{
$user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; ".
"Windows NT 5.0)";
}
else{
$hfile = fopen($url,"r"); if($hfile){
$html.=fgets($hfile,1024); }
}
}
return $html;
}
print($matches[$numero]."<br>");
?>