<Komple PHP SimpleXML Referans
Tanımı ve Kullanımı
xpath() işlevi, XML belge üzerinde bir XPath sorgusu çalıştırır.
Bu işlev, bir başarıyı SimpleXMLElements dizi ve başarısızlık YANLIŞ döndürür.
Sözdizimi
class SimpleXMLElement
{
string xpath(path)
}
Parametre | Açıklama |
---|---|
path | Gereklidir. XML belgesinde aramak ne belirler |
Örnek
XML Dosyası
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
PHP Kodu
<?php
$xml = simplexml_load_file("test.xml");
$result = $xml->xpath("from");
print_r($result);
?>
kodun çıktısını göreceğiz:
Array
(
[0] => SimpleXMLElement Object
(
[0] => Jani
)
)
<Komple PHP SimpleXML Referans