Funzione PHP SimpleXMLElement :: getName ()
Definizione e utilizzo
XML è un linguaggio di markup per condividere i dati sul Web, XML è sia leggibile dall'uomo che dalla macchina. La classe SimpleXMLElement rappresenta un documento XML in PHP.
Il SimpleXMLElement::getName() la funzione recupera e restituisce il nome dell'elemento XML corrente.
Sintassi
SimpleXMLElement::getName();
Parametri
Questa funzione non accetta alcun parametro.
Valori restituiti
Questa funzione restituisce un valore stringa che rappresenta il nome dell'elemento XML corrente.
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 della funzione SimpleXMLElement :: getName ().
<html>
<head>
<body>
<?php
$str="<?xml version='1.0' standalone='yes'?>
<Tutorial>
<Name type = 'programming'>JavaFX</Name>
<Pages>535</Pages>
<Author>Krishna</Author>
<Version>11</Version>
</Tutorial>";
$xml = new SimpleXMLElement($str);
print("Name of the current element: ".$xml->getName());
?>
</body>
</head>
</html>
Questo produrrà il seguente risultato:
Name of the current element: Tutorial
Esempio
L'esempio seguente legge il contenuto di un file XML e stampa i nomi degli elementi in esso -
data.xml
<?xml version="1.0" encoding="utf-8"?>
<Tutorials>
<Tutorial>
<Name>JavaFX</Name>
<Pages>535</Pages>
<Author>Krishna</Author>
<Version>11</Version>
</Tutorial>
<Tutorial>
<Name>CoffeeScript</Name>
<Pages>235</Pages>
<Author>Kasyap</Author>
<Version>2.5.1</Version>
</Tutorial>
<Tutorial>
<Name>OpenCV</Name>
<Pages>150</Pages>
<Author>Maruti</Author>
<Version>3.0</Version>
</Tutorial>
</Tutorials>
Sample.php:
<html>
<head>
<body>
<?php
$doc = new DOMDocument;
$xml = simplexml_load_file("data.xml");
//file to SimpleXMLElement
$xml = simplexml_import_dom($xml);
print($xml->getName()."<br>");
foreach ($xml->children() as $child){
print("::". $child->getName() ."<br>");
foreach ($child->children() as $child){
print(":::::". $child->getName() ."<br>");
}
}
?>
</body>
</head>
</html>
Questo produrrà il seguente output:
Tutorials
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version
Esempio
Di seguito è riportato un altro esempio di questa funzione:
<html>
<head>
<body>
<?php
$data = "<Tutorials> </Tutorials>";
$xml = simplexml_load_string($data);
print_r($xml);
//Adding the child node
$child = $xml->addChild('Tutorial');
$child->addChild('Name', 'OpenCV');
$child->addChild('Pages', '230');
$child->addChild('Author', 'Maruthi');
$child->addChild('Version', '5.5');
print($xml->getName()."<br>");
foreach ($xml->children() as $child){
print("::". $child->getName() ."<br>");
foreach ($child->children() as $child){
print(":::::". $child->getName() ."<br>");
}
}
?>
</body>
</head>
</html>
Questo produrrà il seguente risultato:
SimpleXMLElement Object ( ) Tutorials
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version