我有一个 SimpleXMLObject $node
,其中包含一个我必须检索的数组“数据”,但我不知道如何检索。我有,$node['data']
但它不起作用。有什么帮助吗?
也许这很简单,但我不知道如何快速完成..
编辑:示例代码
foreach ($xmlObject->children() as $node) {
if($node->getName() == 'URL_web_images'){
// here i have a $node that contains an array named 'URL_web_image', how to access to it?
}
}