I have

$number[0] 

which is a object(SimpleXMLElement) type.

It has just one element.

The element has this pair 0 -- 9

9 is a string I need to have in a variable. How can I do that?

Thanks a lot!

link|improve this question

Post the output from print_r($number); – Jason McCreary Nov 22 '11 at 17:20
"The element has this pair 0 -- 9" what do you mean by this? – Viruzzo Nov 22 '11 at 17:21
feedback

1 Answer

up vote 0 down vote accepted

If you want to access anything in your SimpleXMLElement, you will have to access it like an object. i.e

$value = $xml->foo->bar->baz;

This is desribed in more detail at the official documentation for SimpleXML

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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