Ultimele tutoriale de dezvoltare web
 

PHP addChild() Function

<PHP SimpleXML Reference

Exemplu

Adăugați un element de copil la <body> element și un nou <footer> Element:

<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
XML;

$xml = new SimpleXMLElement($note);

// Add a child element to the body element
$xml->body->addChild("date","2014-01-01");

// Add a child element after the last element inside note
$footer = $xml->addChild("footer","Some footer text");

echo $xml->asXML();
?>
Run exemplu »

Definiție și utilizare

addChild() funcția adaugă un element de copil la elementul SimpleXML.


Sintaxă

addChild( name,value,ns );

Parametru Descriere
name Necesar. Specifică numele elementului de copil pentru a adăuga
value Opțional. Specifică valoarea elementului copil
ns Opțional. Specifică un spațiu de nume pentru elementul copil

Detalii tehnice

Întoarcere Valoare: Returnează un obiect SimpleXMLElement care reprezintă copilul adăugat la XML
Versiune PHP: 5.1.3+

<PHP SimpleXML Reference