Los últimos tutoriales de desarrollo web
 

PHP xpath() Function


<Completa PHP SimpleXML Referencia

Definición y Uso

El xpath() la función se ejecuta una consulta XPath en el documento XML.

Esta función devuelve una matriz de SimpleXMLElements en caso de éxito, y FALSE de fracaso.


Sintaxis

class SimpleXMLElement
{
string xpath(path)
}

Parámetro Descripción
path Necesario. Especifica qué buscar en el documento XML

Ejemplo

archivo XML

<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>

Código PHP

<?php
$xml = simplexml_load_file("test.xml");

$result = $xml->xpath("from");

print_r($result);
?>

La salida del código anterior será:

Array
(
[0] => SimpleXMLElement Object
  (
  [0] => Jani
  )
)

<Completa PHP SimpleXML Referencia