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