PHP - Função XMLReader :: moveToNextAttribute ()

Definição e Uso

XML é uma linguagem de marcação para compartilhar os dados na web, XML é tanto para leitura humana quanto para máquina. A extensão XMLReader é usada para ler / recuperar o conteúdo de um documento XML, ou seja, usando os métodos da classe XMLReader, você pode ler cada nó de um documento XML.

o XMLReader::moveToNextAttribute() A função da classe XMLReader move o cursor para o próximo atributo no documento XML.

Sintaxe

XMLReader::moveToAttribute();

Parâmetros

Esta função não aceita nenhum parâmetro.

Valores Retornados

Esta função retorna um valor booleano que é TRUE em caso de sucesso e FALSE em caso de falha.

Versão PHP

Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.

Exemplo

O exemplo a seguir demonstra o uso do XMLReader::moveToNextAttribute() função -

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();
?>

Isso produzirá o seguinte resultado -

name_attr1
name_attr2

Exemplo

A seguir está outro exemplo desta função -

<?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();
?>

Isso produzirá o seguinte resultado -

name_attr1
name_attr2