Cita:
Iniciado por andresdzphp Puedes hacer algo así:
Código PHP:
Ver original<?php
$doc = new DOMDocument();
$doc->loadHTMLFile('http://pe.globedia.com/old-ball-game-one-man-show');
$xpath = new DOMXPath($doc);
$ficha = $xpath->query('//div[@class="ficha_sobre"]/p[3]/a');
echo $ficha->item(0)->getAttribute('href');
//http://sportsmadeinusa.com/beisbol/the-old-ball-game-the-one-man-show/
Saludos.
Hola Andresdzphp solo una duda y agradezco tu respuesta, para que poner la /p[3]/a solo eso gracias.