I am using phpQuery to parse every single element of HTML files, what I do is something like this:

foreach (pq('body')->children() as $children) {
    // do some code here
}

However, I need to know which element is being parsed (table, div, p...).

How can I do this?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Ok, I dit it. As phpQuery is based on DOMDocument I just had to use the attribute nodeName, like this:

foreach (pq('body')->children() as $children) {
    echo $children->nodeName;
}

Perfectly works.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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