我在 php 中使用 print_r() 得到了以下信息。
SimpleXMLElement Object
(
[@attributes] => Array
(
[term] => hello world
[scheme] => Organization
)
)
如何使用 php simplexml 访问方案节点?由于@符号,我无法使用节点@attributes
如果您的对象被分配给一个名为 $my_xml 的变量,您可以通过 $my_xml['term'] 和 $my_xml['scheme'] 访问这两个属性。http://php.net在http://php.net/manual/en/simplexml.examples-basic.php有一些很好的例子
在这里,您将了解如何使用 simplexml 访问对象和属性
$xml->object
$xml['attribute']
http://php.net/manual/en/simplexml.examples-basic.php下的更多基础知识