Erişmek için nasıl PHP, SimpleXML,

1 Cevap php

I would like to understand how to access a by its id and not trough array position, example,

Ben bunu yapmak istemiyorum,

$ MyXML-> someNameHere [1] -> Eve [0]

Ben "merhaba" kendi kimliği ile erişim someNameHere gitmek istiyorum

Thanks a lot for your atention, ;D

1 Cevap

Bunun için XPath kullanmak gerekecek.

$nodes = $myXML->xpath('//*[@id="hi"]');

if (!empty($nodes))
{
    $someNameHere = $nodes[0];
}