我正在解析下面给出的数组。使用 foreach 循环遍历 td。现在我想选择 [@attributes] 以外的值。我不能专门使用 a 或 p ,因为它们会在整个对象中发生变化。
我怎样才能做到这一点?
[0] => SimpleXMLElement Object
(
[th] => SimpleXMLElement Object
(
[@attributes] => Array
(
[rowspan] => 2
[scope] => row
)
[p] => Memory
)
[td] => Array
(
[0] => SimpleXMLElement Object
(
[@attributes] => Array
(
[class] => ttl
)
[a] => Card slot
)
[1] => SimpleXMLElement Object
(
[@attributes] => Array
(
[class] => nfo
)
[p] => No
)
)
)
希望解决方案在 php 中工作。