Array ( [0] =>
SimpleXMLElement Object ( [record] =>
SimpleXMLElement Object ( [f] =>
Array ( [0] => Company
[1] => Company
[2] => Mark Test
[3] => Intern
[4] => Administrative
[5] => Account
[6] => img.png
[7] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 18 ) )
[8] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 21 ) )
[9] => emailtest@gmail.com
[10] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 178 ) )
[11] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 177 ) )
[12] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 179 ) )
[13] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 168 ) ) )
[update_id] => 12102222262043 ) ) )
This is basically my simplexmlobject array that I want to somehow just manipulate and take out the data starting from the f element. I want to store like the words Company, Mark Test, Intern into an array. I can't seem to figure out how I am suppose to do this with a foreach loop in php and the structure of this is so crazy.
Well to get all the values for this data I did this in part of my code where getUsers() does an api call to a service that gives me a simplexml:
$xml = $getUser->getUsers();
$records = $xml->xpath('//records');
print_r($records);
fin the document? Also, where did that enclosingArraycome from? Can you post the code that generated this output? – Andrew Curioso Jun 15 '11 at 21:39<records>nodes or all children of<records>nodes? – Andrew Curioso Jun 15 '11 at 21:50