Loop through children : simplexml_load_string « XML « PHP






Loop through children

 
<?php
   $xml = simplexml_load_file("books.xml");
   foreach($xml->book[2]->cast->children() AS $character) {
      echo "$character<br />";
   }
?>
  
  








Related examples in the same category

1.Accessing identically named elements
2.Adding attributes
3.Changing elements and attributes
4.Loading an XML document from a file
5.Fetching a remote XML document
6.Parsing XML in a string
7.Parsing an XML Document with SimpleXML
8.simplexml_load_file.php
9.Loading a remote XML document
10.Outputting XML
11.Using SimpleXML to extract data
12.Simple XML
13.Print XML element attributes
14.Printing sub-element contents
15.Saving an XML document to a file