Forum Moderators: open

Message Too Old, No Replies

getElementsByTagName().length problem

         

thecoolone

9:10 am on Jan 26, 2007 (gmt 0)

10+ Year Member



Using PHP DOM XML, I am trying to get the number of nodes in the nodelist by using the length propery of getElementsByTagName.

here's the code:
$doc = new DOMDocument();
$doc->loadXML($response);
$cnt=$doc->getElementsByTagName("entry");
$count=$cnt.length;
print "$count is the length<br>";

but it doesnt give me the length, rather this is the output i get:
"Object id #2length is the length"

Can someone help me out here.
Btw im using PHP5.

Thanx in advance