PHP - Função XMLReader :: moveToAttributeNo ()
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::moveToAttributeNo() A função da classe XMLReader aceita um valor inteiro que representa o índice de um atributo e move o cursor para o atributo especificado.
Sintaxe
XMLReader::moveToAttributeNo($index);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | index(Mandatory) Este é um valor inteiro que representa o índice de um atributo. |
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::moveToAttributeNo() função -
data.xml
<Employee>
<Name id = "name">Krishna</Name>
<Age id = "age">22</Age>
<City id = "city">Hyderabad</City>
<Phone id = "phone">Hyderabad</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->moveToAttributeNo(0);
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">
<name>Raju</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("test.xml");
//Reading the contents
$reader->next();
$reader->read();
$reader->next();
$reader->moveToAttributeNo(0);
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->moveToAttributeNo(0);
print($reader->value."\n");
//Closing the reader
$reader->close();
?>
Isso produzirá o seguinte resultado -
test_attribute