PHP - Función XMLReader :: moveToFirstAttribute ()
Definición y uso
XML es un lenguaje de marcado para compartir los datos a través de la web, XML es legible tanto para humanos como para máquinas. La extensión XMLReader se utiliza para leer / recuperar el contenido de un documento XML, es decir, utilizando los métodos de la clase XMLReader puede leer cada nodo de un documento XML.
los XMLReader::moveToFirstAttribute() La función de la clase XMLReader mueve el cursor al primer atributo del documento XML.
Sintaxis
XMLReader::moveToFirstAttribute();
Parámetros
Esta función no acepta ningún parámetro.
Valores devueltos
Esta función devuelve un valor booleano que es VERDADERO en caso de éxito y FALSO en caso de error.
Versión PHP
Esta función se introdujo por primera vez en PHP Versión 5 y funciona en todas las versiones posteriores.
Ejemplo
El siguiente ejemplo demuestra el uso de XMLReader::moveToFirstAttribute() función -
data.xml
<Employee>
<Name id1 = "attr_name">Krishna</Name>
<Age id2 = "attr_age">22</Age>
<City id3 = "attr_city">Hyderabad</City>
<Phone id4 = "attr_phone">980000000</Phone>
</Employee>
sample.php
<?php
//Creating an XMLReader
$reader = new XMLReader();
//Opening a reader
$reader->open("trail.xml");
//Reading the contents of the XML file
$reader->read();
$reader->read();
$reader->read();
if ($reader->nodeType == XMLREADER::ELEMENT) {
$res = $reader->moveToAttribute('id4');
$reader->moveToElement();
print($reader->name."\n");
$reader->moveToFirstAttribute();
print($reader->name."\n");
}
//Closing the reader
$reader->close();
?>
Esto producirá el siguiente resultado:
Name
id1
Ejemplo
A continuación se muestra otro ejemplo de esta función:
<?php
//Creating an XMLReader
$reader = new XMLReader();
$data= "<data>
<name att1 = 'test_attribute1'>Raju</name>
<age>32</age>
<phone>9848022338</phone>
<city att2 = 'test_attribute2'>Hyderabad</city>
</data>
//Opening a reader
$reader->xml($data);
//Reading the contents of the XML file
$reader->read();
$reader->read();
$reader->read();
if ($reader->nodeType == XMLREADER::ELEMENT) {
$res = $reader->moveToAttribute('test_attribute2');
print($reader->name."\n");
$reader->moveToFirstAttribute();
print($reader->name."\n");
}
//Closing the reader
$reader->close();
?>
Esto producirá el siguiente resultado:
name
att1