vote up 0 vote down star

I am loading HTML into DOM and then querying it using XPath in PHP. My current problem is how do I find out how many matches have been made, and once that is ascertained, how do I access them?

I currently have this dirty solution:

$i = 0;
foreach($nodes as $node) {
echo $dom->savexml($nodes->item($i));
$i++; }

Is there a cleaner solution to find the number of nodes, I have tried count(), but that does not work.

flag

1 Answer

vote up 2 vote down check

You haven't posted any code related to $nodes so I assume you are using DOMXPath and query(), or at the very least, you have a DOMNodeList.
DOMXPath::query() returns a DOMNodeList, which has a length member. You can access it via (given your code):

$nodes->length
link|flag
What a plum, it took me so long to investigate other elements of the DOMXPath and Query, that I failed to see if there was something like this. Thank you very much for your answer :) – esrylx Jul 13 at 19:11

Your Answer

Get an OpenID
or

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