PHP - Função XMLReader :: moveToFirstAttribute ()
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::moveToFirstAttribute() A função da classe XMLReader move o cursor para o primeiro atributo no documento XML.
Sintaxe
XMLReader::moveToFirstAttribute();
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::moveToFirstAttribute() 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) {
$res = $reader->moveToAttribute('id4');
$reader->moveToElement();
print($reader->name."\n");
$reader->moveToFirstAttribute();
print($reader->name."\n");
}
//Closing the reader
$reader->close();
?>
Isso produzirá o seguinte resultado -
Name
id1
Exemplo
A seguir está outro exemplo desta função -
<?php
//Creating an XMLReader
$reader = new XMLReader();
$data= "<data>
<name att1 = 'test_attribute1'>Raju</name>
<age>32</age>
<phone>9848022338</phone>
<city att2 = 'test_attribute2'>Hyderabad</city>
</data>
//Opening a reader
$reader->xml($data);
//Reading the contents of the XML file
$reader->read();
$reader->read();
$reader->read();
if ($reader->nodeType == XMLREADER::ELEMENT) {
$res = $reader->moveToAttribute('test_attribute2');
print($reader->name."\n");
$reader->moveToFirstAttribute();
print($reader->name."\n");
}
//Closing the reader
$reader->close();
?>
Isso produzirá o seguinte resultado -
name
att1