SimpleXMLElement::xpath

(PHP 5, PHP 7)

SimpleXMLElement::xpathBir XML veri üzerinde bir XPath sorgusu çalıştırır

Açıklama

xpath ( string $ifade ) : array

ifade ile belirtilen XPath yoluyla eşleşen SimpleXMLElement düğümlerini döndürür.

Değiştirgeler

ifade

Bir XPath yolu.

Dönen Değerler

Başarısız olursa FALSE yoksa SimpleXMLElement nesnelerinden oluşan bir dizi döndürür.

Örnekler

Örnek 1 - Xpath örneği

<?php
$string 
= <<<XML
<a>
 <b>
  <c>text</c>
  <c>stuff</c>
 </b>
 <d>
  <c>code</c>
 </d>
</a>
XML;

$xml = new SimpleXMLElement($string);

/* Search for <a><b><c> */
$result $xml->xpath('/a/b/c');

while(list( , 
$node) = each($result)) {
    echo 
'/a/b/c: ',$node,"\n";
}

/* Göreli yollar da çalışır... */
$result $xml->xpath('b/c');

while(list( , 
$node) = each($result)) {
    echo 
'b/c: ',$node,"\n";
}
?>

Yukarıdaki örneğin çıktısı:

/a/b/c: text
/a/b/c: stuff
b/c: text
b/c: stuff

İki sonucun da aynı oluşuna dikkat edin.