I sorry for the aparently easy question for all you experienced developers. But I can´t obtain the answer in any place. So I´ll try here. Maybe help other guy someday.

$xml = new SimpleXMLElement($object->ExecutarXMLResult->any);
var_dump($xml);

My var_dump is that:

object(SimpleXMLElement)#5 (2) { ["listatomador"]=> array(104) { [0]=> object(SimpleXMLElement)#6 (1) { ["@attributes"]=> array(3) { ["id_pessoa"]=> string(4) "5251" ["nm_pessoa"]=> string(28) "Wilson" ["nr_cnpj_cpf"]=> string(14) "1" } } [1]=> object(SimpleXMLElement)#7 (1) { ["@attributes"]=> array(3) { ["id_pessoa"]=> string(3) "939" ["nm_pessoa"]=> string(46) "Grupo" ["nr_cnpj_cpf"]=> string(14) "5" } }

So I you can see, I know there is 104 units of "listatomador" as explained in array(104). But how could I obtain it in my code? I tried every way and nothing.

Best Regards, thanks in advance.

link|improve this question

45% accept rate
Did you also try reading the documentation for children? – Jon Dec 15 '11 at 16:29
I´ll try. Thanks. But I think may be a way to acesss this value directly. Or Not. I really don´t know. – fhnaylor Dec 15 '11 at 16:34
You have a SimpleXMLElement. The only ways in which you can interact with it are laid out in the documentation (since it's Traversable, you can also use foreach). It's not voodoo. – Jon Dec 15 '11 at 16:38
feedback

1 Answer

up vote 1 down vote accepted

Iterating over each index ..

foreach ( $xml as $item ) {
       // ... 
} 
link|improve this answer
Thanks. It helps a lot. – fhnaylor Dec 15 '11 at 16:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.