Cita:
Iniciado por jonni09lo Por eso, como obtienes ese hipervinculo. Igual debes de usar expresiones regulares.
Ejemplo
Código PHP:
Ver original$text = '<a href="http://google.com">bla bla bla</a>';
$counnt = count($matches[1]); for($i = 0; $i < count($matches[1]); $i++){ }
Esa sería una idea.
Saludos
me sigue saliendo el mismo error
Cita: Warning: file_get_contents(<a href="http://www.gratisprogramas.us/descarga/la-contrasena-mas-usada-en-adobe-resulto-ser-123456/">http://www.gratisprogramas.us/descarga/la-contrasena-mas-usada-en-adobe-resulto-ser-123456/</a>) [function.file-get-contents]: failed to open stream: Invalid argument in F:\Program\Web\xampp\htdocs\warez\wp-content\themes\mystique\functions.php on line 764
talvez estoy haciendo algo mal
Código PHP:
function getTitle($content){
$str = file_get_contents($content);
if(strlen($str)>0){
preg_match("/\<title\>(.*)\<\/title\>/",$str,$title);
return $title[1];
}
}
$ti = getTitle($content);
$text = $ti;
preg_match_all("#<a href=\"(.*?)\">(.*?)<\/a>#", $text, $matches);
$counnt = count($matches[1]);
for($i = 0; $i < count($matches[1]); $i++){
$ti = file_get_contents($matches[1][$i]);
}