PHP - Função XMLReader :: moveToAttribute ()
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::moveToAttribute() A função da classe XMLReader aceita um valor de string que representa o nome de um atributo e move o cursor para o atributo especificado.
Sintaxe
XMLReader::moveToAttribute($name);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 |
name(Mandatory) Esta função retorna um valor booleano que é TRUE em caso de sucesso e FALSE em caso de falha. |
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::moveToAttribute() função -
data.xml
<Employee>
<Name id = "name">Krishna</Name>
<Age id = "age">22</Age>
<City id = "city">Hyderabad</City>
<Phone id = "phone">980000000</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->moveToAttribute('id2');
print($reader->value."\n");
}
}
//Closing the reader
$reader->close();
?>
Isso produzirá o seguinte resultado -
age
Exemplo
A seguir está outro exemplo desta função -
test.xml
<data>
<name att = "test_attribute">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->moveToAttribute("att");
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>
<name att = 'test_attribute'>Raju</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->moveToAttribute("att");
print($reader->value."\n");
//Closing the reader
$reader->close();
?>
Isso produzirá o seguinte resultado -
test_attribute