Our script uses dom to parse all the a tags from a document then loops through child nodes and extracts information which works fine here's how the code starts

@$dom->loadHTML($str);
$documentLinks = $dom->getElementsByTagName("a");

Part of the loop

$this->count]['href']     = strip_tags($documentLink->getAttribute('href'));

I now need to get the title tag from each page were lopping through so I thoguht I could do

$documentTitle = $dom->getElementsByTagName("title");
$documentLinks = $dom->getElementsByTagName("a");

Then add this to the loop/array to get the document title but it comes back with "[title] => DOMNodeList Object()" How can I include the title tag in the loop which is going through a tags/child nodes?

$this->count]['title']  = $documentTitle;
link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

getElementsByTagName returns a DOMNodeList object. You want the text content of the first (should only be one page title) item in the list.

Try this:

$documentTitle = $dom->getElementsByTagName('title')->item(0)->textContent;
link|improve this answer
Awesome thanks much! – Anagio Oct 16 '11 at 8:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.