A função xpath() executa uma consulta XPath em um documento XML.
Se for bem-sucedida, a função retornará uma matriz de objetos SimpleXMLElements. Se falhar, retorna FALSE.
classe SimpleXMLElement{string xpath(caminho)}
parâmetro | descrever |
---|---|
caminho | Obrigatório. Especifica o caminho XPath a ser pesquisado no documento XML. |
Arquivo XML
<?xml version="1.0" encoding="ISO-8859-1"?><note><to>Tove</to><from>Jani</from><heading>Lembrete</heading><body>Don não se esqueça de mim neste fim de semana!</body></note>
Código PHP
<?php$xml = simplexml_load_file("test.xml");$resultado = $xml->xpath("de");print_r($resultado);?>
O código acima irá gerar:
Array([0] => Objeto SimpleXMLElement ( [0] => Jani ))