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

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::moveToAttributeNs() A função da classe XMLReader aceita dois valores de string que representam o nome de um atributo e o URI do espaço de nomes e move o cursor para o atributo especificado.

Sintaxe

XMLReader::moveToAttributeNs($name, $URI);

Parâmetros

Sr. Não Parâmetro e Descrição
1

name(Mandatory)

Este é um valor de string que representa o nome de um atributo.

2

URI(Mandatory)

Este é um valor de string que representa o URI do namespace.

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::moveToAttributeNs() função -

data.xml

<?xml version="1.0" encoding="utf-8"?> 
<Employee xmlns:ns="testnamespace">
   <ns:Name ns:id = "name">Krishna</ns:Name>
   <ns:Age ns:id = "age">22</ns:Age>
   <ns:City ns:id = "city">Hyderabad</ns:City>   
   <ns:Phone ns:id = "phone">980000000</ns:Phone>   
</Employee>

sample.php

<?php
   //Creating an XMLReader
   $reader = new XMLReader();

   //Opening a reader
   $reader->open(data.xml');

   //reading the contents of the XML file
   while($reader->read()){
      if ($reader->nodeType == XMLREADER::ELEMENT) { 
         $reader->moveToAttributeNs('id', 'testnamespace'); 
         print($reader->value."\n");
      }
   }
   //Closing the reader
   $reader->close();
?>

Isso produzirá o seguinte resultado -

name
age
city
phone

Exemplo

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

test.xml

<data xmlns:ns="testnamespace"> 
   <ns:name ns:att = "test_attribute">Raju</ns:name> 
   <age>32</age> 
   <phone>9848022338</phone> 
	<city>Hyderabad</city>
</data>

sample.php

<?php
   //Creating an XMLReader
   $reader = new XMLReader();

   //Opening a reader
   $reader->open("trail.xml");

   //Reading the contents
   $reader->next();
   $reader->read();
   $reader->next();
   $reader->moveToAttributeNs("att", "testnamespace");
   print($reader->value."\n");

   //Closing the reader
   $reader->close();
?>

Isso produzirá o seguinte resultado -

test_attribute

Exemplo

<?php
   //Creating an XMLReader
   $reader = new XMLReader();

   $data = "<data xmlns:ns = 'testnamespace'> 
      <ns:name ns:att = 'test_attribute'>Raju</ns:name> 
      <age>32</age> 
      <phone>9848022338</phone> 
      <city>Hyderabad</city>
   </data>";

   //Opening a reader
   $reader->xml($data);

   //Reading the contents
   $reader->next();
   $reader->read();
   $reader->next();
   $reader->moveToAttributeNs("att", "testnamespace");
   print($reader->value."\n");
   
   //Closing the reader
   $reader->close();
?>

Isso produzirá o seguinte resultado -

test_attribute