Exemple
Trouvez les enfants du nœud note:
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't
forget me this weekend!</body>
</note>
XML;
$xml=simplexml_load_string($note);
foreach ($xml->children() as $child)
{
echo "Child node: " . $child . "<br>";
}
?>
»Exécuter exemple Définition et utilisation
Les children() fonction trouve les enfants d'un noeud spécifié.
Syntaxe
children( ns,is_prefix );
Paramètre | La description |
---|---|
ns | Optionnel. Indique un espace de noms XML |
is_prefix | Optionnel. Spécifie une valeur booléenne. Si TRUE, ns est considéré comme préfixe. Si FAUX, ns est considéré comme une URL d'espace de noms |
Détails techniques
Valeur de retour: | Retourne un objet SimpleXMLElement |
---|---|
PHP Version: | 5.0.1+ |
PHP Changelog: | Le paramètre a été ajouté is_prefix |
autres exemples
Exemple 1
Trouvez les enfants du nœud du corps:
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body><span>Important!</span> Don't forget me
this weekend!</body>
</note>
XML;
$xml=simplexml_load_string($note);
foreach ($xml->body[0]->children() as
$child)
{
echo "Child node: " . $child . "<br>";
}
?>
»Exécuter exemple <PHP SimpleXML Référence