我有一个这样的 SimpleXMLElement var_dump()
:
object(SimpleXMLElement)#4 (2) {
["@attributes"]=>
array(1) {
["currencyId"]=>
string(3) "GBP"
}
[0]=>
string(5) "10.44"
}
如何访问该[0]
元素?
$data[0]
给我
Object(SimpleXMLElement)#1 (1) {
["@attributes"]=>
array(1) {
["currencyId"]=>
string(3) "GBP"
}
}