Hallo, ich hoffe jemand hat hierzu ne Idee.
hier meine xml.xml
und meine php datei
$xml->xpath('//a')
bekomm ich noch das richtige
aber mit $xml->xpath('//a/label')
bekomm ich nichts mehr ausser ein leeres Array
hier meine xml.xml
HTML:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<a>
<label>test a</label>
<option value="1">
<wert>10</wert>
</option>
<option value="2">
<wert>20</wert>
</option>
</a>
<b>
<label>test b</label>
<option value="1">
<wert>100</wert>
</option>
<option value="2">
<wert>200</wert>
</option>
</b>
</root>
PHP:
<?php
$xml = simplexml_load_file('xml.xml');
echo '<pre>';
print_r($xml->xpath('//a/label'));
?>
bekomm ich noch das richtige
aber mit $xml->xpath('//a/label')
bekomm ich nichts mehr ausser ein leeres Array