PHP SimpleXML ve xpath

1 Cevap php

Ben böyle bir XML dosyası var:

<?xml version="1.0" encoding="UTF-8"?>
<gallery>
    <album tnPath="tn/" lgPath="imm/" fsPath="iml/" >
        <img src="001.jpg" />
        <img src="002.jpg" />
    </album>
</gallery>

Ben dosyayı okuyorum:

$xmlFile = "xml.xml";
$xmlStr = file_get_contents($xmlFile . "?" . time());
$xmlObj = simplexml_load_string($xmlStr);

Now I am rebuilding the XML file and would like to save the album node with it's attributes in a var I was thinking with xpath:

// these all return arrays with the images...
// echo $xmlObj->xpath('/gallery/album@tnPath');
// echo $xmlObj->xpath('//album[@tnPath]');
// echo $xmlObj->xpath('//@tnPath');

Ama bu işe görünmüyor? Herhangi bir yardım?

1 Cevap

$xmlObj->xpath('/gallery/album') sizin albüm düğüm (ler) verir.