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!
|
I have
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!
| |||
|
feedback
|
|
If you want to access anything in your
This is desribed in more detail at the official documentation for SimpleXML | |||
|
feedback
|
print_r($number);– Jason McCreary Nov 22 '11 at 17:20