Hallo,
ich versuche gerade die Anzahl der Einträge in einer XML herauszufinden.
if (file_exists('XML/customer.xml')) {
$xml = simplexml_load_file('XML/customer.xml');
$counter = count($xml->xpath("/data/customer"));
echo $counter;
Die XML sieht so aus:
<data name="data">
<customer name="aaa"></customer>
<customer name="bbb"></customer>
<customer name="ccc"></customer>
</data>
Funktionert so leider nicht. Weiß jemand warum?
Danke, Andi