29/07/2014, 10:33
|
| | Fecha de Ingreso: junio-2014
Mensajes: 50
Antigüedad: 10 años, 6 meses Puntos: 1 | |
Respuesta: Devolver <title> Encontré la solución en un post antiguo!
Lo siento por repetir =(
la solución esta aquí:
<?php
$url = 'http://www.forosdelweb.com';
$doc = new DOMDocument();
libxml_use_internal_errors(true);
$doc->loadHTMLFile($url);
$title = $doc->getElementsByTagName('title');
echo $title->item(0)->nodeValue;
?>
del post:
http://www.forosdelweb.com/f18/obtener-titulo-pagina-leyendo-url-php-1017151/ |