La fonction xpath() exécute une requête XPath sur un document XML.
En cas de succès, la fonction renvoie un tableau d'objets SimpleXMLElements. En cas d'échec, renvoie FALSE.
classe SimpleXMLElement{string xpath(path)}
paramètre | décrire |
---|---|
chemin | Requis. Spécifie le chemin XPath à rechercher dans le document XML. |
Fichier XML
<?xml version="1.0" encoding="ISO-8859-1"?><note><to>Tove</to><from>Jani</from><heading>Rappel</heading><body>Don ne m'oublie pas ce week-end !</body></note>
Code PHP
<?php$xml = simplexml_load_file("test.xml");$result = $xml->xpath("from");print_r($result);?>
Le code ci-dessus affichera :
Array([0] => Objet SimpleXMLElement ( [0] => Jani ))