I seem to be running into a problem. Considering the follow XML structure:

<data>
    <row>
        <id>1</id>
        <name>Peter</name>
    </row>
    <row>
        <id>2</id>
        <name>Ryan</name>
    </row>
    <row>
        <id>3</id>
        <name>Mike</name>
    </row>
</data>

It returns a SXE object named "data" which contains an array "row" which consists of more SXE objects.

I'm using XPath and I want to find the row which has "id = 2". But I don't think you can XPath your way through arrays, so what am I to do?

Edit: Oh, I found the answer. You CAN use XPath

$table->xpath('data/row[id=2]')
link|improve this question

70% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Oh, I found the answer. You CAN use XPath

$table->xpath('data/row[id=2]')
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.