PHP - Funzione SimpleXMLElement :: addChild ()
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::addChild() la funzione accetta valori stringa che rappresentano la chiave e il valore di un elemento XML e lo aggiunge come figlio al nodo XML.
Sintassi
SimpleXMLElement::addChild($name [$value, $namespace ]);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | name (Mandatory) Questo è un valore stringa che rappresenta il nome dell'elemento figlio da aggiungere. |
2 | value(Optional) Questa è una stringa che rappresenta il valore dell'elemento figlio da aggiungere. |
3 | namespace(Optional) Questo è un valore stringa che rappresenta lo spazio dei nomi a cui appartiene l'elemento figlio. |
Valori restituiti
Questa funzione restituisce un oggetto della classe SimpleXMLElement contenente il figlio aggiunto.
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 SimpleXMLIterator::addChild() funzione.
<html>
<head>
<body>
<?php
$str="<?xml version='1.0' standalone='yes'?>
<Tutorial>
<Name>JavaFX</Name>
<Pages>535</Pages>
<Author>Krishna</Author>
<Version>11</Version>
</Tutorial>";
$xml = new SimpleXMLElement($str);
//Adding the child node
$tut = $xml->addChild('Tutorial');
$tut->addChild('Price', '600');
$xml->asXML("output.xml");
print_r($xml);
?>
</body>
</head>
</html>
Questo produrrà il seguente risultato:
SimpleXMLElement Object (
[Name] => JavaFX [Pages] => 535
[Author] => Krishna [Version] => 11
[Tutorial] => SimpleXMLElement Object ( [Price] => 600 )
)
Esempio
Di seguito è riportato un esempio di questa funzione con spazio nome parametro opzionale:
<html>
<head>
<body>
<?php
$str = "<?xml version='1.0' standalone='yes'?>
<Tutorial>
<Name>JavaFX</Name>
<Pages>535</Pages>
<Author>Krishna</Author>
<Version>12</Version>
</Tutorial>";
$xml = new SimpleXMLElement($str);
//Adding the child node
$tut = $xml->addChild('Tutorial');
$tut->addChild('Price', '600', 'mynamespace');
$xml->asXML("output.xml");
print_r($xml);
?>
</body>
</head>
</html>
Questo produrrà il seguente output:
SimpleXMLElement Object (
[Name] => JavaFX [Pages] => 535
[Author] => Krishna [Version] => 12
)
Esempio
Nell'esempio seguente stiamo cercando di aggiungere un nuovo record a un file XML -
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>
</Tutorials>
Sample.xml
<html>
<head>
<body>
<?php
$doc = new DOMDocument;
$xml = simplexml_load_file("Data.xml");
//file to SimpleXMLElement
$simpleXmlElement = simplexml_import_dom($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');
$xml->asXML("output.xml");
print("<br><br>");
foreach($xml->children() as $tut) {
print($tut->Name ."<br>");
print($tut->Pages ."<br>");
print($tut->Author ."<br>");
print($tut->Version ."<br>");
print("<br>");
}
?>
</body>
</head>
</html>
Questo produrrà il seguente risultato:
JavaFX
535
Krishna
11
CoffeeScript
235
Kasyap
2.5.1
OpenCV
230
Maruthi
5.5