我正在使用 SimpleXMLElement 类在 php 中读取 KML 文件。树中的最后一个元素看起来像下面的例子(php 对象的 var_dump 说 $element):
object(SimpleXMLElement)#2 (2) {
["@attributes"]=>
array(1) {
["name"]=>
string(10) "featurecla"
}
[0]=>
string(15) "Admin-0 country"
}
如何在 php 中访问“Admin-0 country”值?
我已经尝试了 $element->children() 和 $element->attributes() 并且只能访问“featurecla”。
慕桂英4014372