PHP - Funzione XMLReader :: moveToNextAttribute ()
Definizione e utilizzo
XML è un linguaggio di markup per condividere i dati sul Web, XML è sia leggibile dall'uomo che dalla macchina. L'estensione XMLReader viene utilizzata per leggere / recuperare il contenuto di un documento XML, ovvero utilizzando i metodi della classe XMLReader è possibile leggere ogni nodo di un documento XML.
Il XMLReader::moveToNextAttribute() la funzione della classe XMLReader sposta il cursore sull'attributo successivo nel documento XML.
Sintassi
XMLReader::moveToAttribute();
Parametri
Questa funzione non accetta alcun parametro.
Valori restituiti
Questa funzione restituisce un valore booleano che è TRUE in caso di successo e FALSE in caso di fallimento.
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 5 di PHP e funziona in tutte le versioni successive.
Esempio
L'esempio seguente mostra l'utilizzo di XMLReader::moveToNextAttribute() funzione -
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) {
$reader->moveToFirstAttribute();
print($reader->name."\n");
$reader->moveToNextAttribute();
print($reader->name."\n");
}
//Closing the reader
$reader->close();
?>
Questo produrrà il seguente risultato:
name_attr1
name_attr2
Esempio
Di seguito è riportato un altro esempio di questa funzione:
<?php
//Creating an XMLReader
$reader = new XMLReader();
$data = "<Employee>
<Name name_attr1 = 'n_val1' name_attr2 = 'n_val2'>Krishna</Name>
<Age>22</Age>
<City>Hyderabad</City>
<Phone>980000000</Phone>
</Employee>";
//Opening a reader
$reader->xml($data);
//Reading the contents of the XML file
$reader->read();
$reader->read();
$reader->read();
$reader->moveToFirstAttribute();
print($reader->name."\n");
$reader->moveToNextAttribute();
print($reader->name."\n");
//Closing the reader
$reader->close();
?>
Questo produrrà il seguente risultato:
name_attr1
name_attr2