PHP - Función XMLReader :: moveToNextAttribute ()
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::moveToNextAttribute() La función de la clase XMLReader mueve el cursor al siguiente atributo en el documento XML.
Sintaxis
XMLReader::moveToAttribute();
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::moveToNextAttribute() 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) {
$reader->moveToFirstAttribute();
print($reader->name."\n");
$reader->moveToNextAttribute();
print($reader->name."\n");
}
//Closing the reader
$reader->close();
?>
Esto producirá el siguiente resultado:
name_attr1
name_attr2
Ejemplo
A continuación se muestra otro ejemplo de esta función:
<?php
//Creating an XMLReader
$reader = new XMLReader();
$data = "<Employee>
<Name name_attr1 = 'n_val1' name_attr2 = 'n_val2'>Krishna</Name>
<Age>22</Age>
<City>Hyderabad</City>
<Phone>980000000</Phone>
</Employee>";
//Opening a reader
$reader->xml($data);
//Reading the contents of the XML file
$reader->read();
$reader->read();
$reader->read();
$reader->moveToFirstAttribute();
print($reader->name."\n");
$reader->moveToNextAttribute();
print($reader->name."\n");
//Closing the reader
$reader->close();
?>
Esto producirá el siguiente resultado:
name_attr1
name_attr2