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?