I'm having some problems getting the array in these objects. When I print_r(), the following code is printed. $message_object is the name of the object.
SimpleXMLElement Object
(
[header] => SimpleXMLElement Object
(
[responsetime] => 2012-12-22T14:10:09+00:00
)
[data] => SimpleXMLElement Object
(
[id] => Array
(
[0] => 65233
[1] => 65234
)
[account] => Array
(
[0] => 20992
[1] => 20992
)
[shortcode] => Array
(
[0] => 3255
[1] => 3255
)
[received] => Array
(
[0] => 2012-12-22T11:04:30+00:00
[1] => 2012-12-22T11:31:08+00:00
)
[from] => Array
(
[0] => 6121843347
[1] => 6121820166
)
[cnt] => Array
(
[0] => 24
[1] => 25
)
[message] => Array
(
[0] => Go tramping wellington 11-30
[1] => Go drinking Matakana 2pm
)
)
)
I'm trying to get the id arrays out of the objects with a foreach:
foreach($message_object->data->id AS $id) {
print_r($id);
}
The following reply is sent:
SimpleXMLElement Object ( [0] => 65233 ) SimpleXMLElement Object ( [0] => 65234 )
How do I get the value of [0] or am I going about this wrong? and is there a way to loop though the results and get the object keys?
I have tried to echo $id[0] but it returns no result.
When you use
print_r
on aSimpleXMLElement
there comes magic in between. So what you see is not actually what is there. It's informative, but just not the same as with normal objects or arrays.To answer your question how to iterate:
to answer how to convert those into an array:
As this would still give you the
SimpleXMLElements
but you might want to have the values you can either cast each of these elements to string on use, e.g.:or convert the whole array into strings:
or alternatively into integers:
You just need to update your foreach like this:
You can cast the SimpleXMLElement object like so:
Or cast the whole thing:
Update
Okay, the
array_map
code just above doesn't really work because it's not strictly an array, you should applyiterator_to_array($message_object->data_id, false)
first:See also: @hakre's answer.