OK, I am working with multidimensional associative arrays. Inside one of my arrays of arrays, I have an array of SimpleXMLElement Objects. Here is the structure of my array:

[xml] => Array
            (
                [Status] => Great
                [ID] => 13.35438
                [Subaccount] => ph10017
                [Channel] => Market
                [Descriptions] => SimpleXMLElement Object
                    (
                        [Description] => Array
                            (
                                [0] => data wanted #1
                                [1] => data wanted #2
                            )

                    )

                [Test] => 1
            )

        [application_id] => 98765
        [error] => No
        [lead_sub_status] => Bla

So to get the value of the element "Status", it would be $xml['Status']. Easy enough. However, I am trying to assign a variable to [0] and [1] of the [Description] element, which is a SimpleXMLElement Object and the value of the element [Descriptions] element. How can I retrieve these values into a variable or reference them?

link|improve this question

25% accept rate
1  
That works as usual. Please search the site, others have asked this before, you only need to find the path. If it's to complicated, do it step by step using a variable assignment for each step. – hakre Feb 1 at 15:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.