SimpleXMLObject$node
があり、これには取得する必要のある配列'data'が含まれていますが、方法がわかりません。私は一緒にいました$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?
}
}