Função PHP XMLReader :: getAttributeNo ()
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::getAttributeNo() função da classe XMLReader aceita um valor inteiro que representa o índice de um atributo e retorna seu valor.
Sintaxe
XMLReader::getAttributeNo($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 de string que representa o valor do atributo especificado. Se o atributo especificado não existir, esta função retornará NULL.
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::getAttributeNo() 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('trail.xml');
//reading the contents of the XML file
while($reader->read()){
if ($reader->nodeType == XMLREADER::ELEMENT) {
$res = $reader->getAttributeNo(0);
print($res."\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>
<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();
print($reader->getAttributeNo(0)."\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();
print($reader->getAttributeNo(0)."\n");
//Closing the reader
$reader->close();
?>
Isso produzirá o seguinte resultado -
test_attribute