3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xmlStr = <<<XML <?xml version='1.0' standalone='yes'?> <movies> <movie> <title>PHP: Behind the Parser</title> <characters> <character> <name>Ms. Coder</name> <actor>Onlivia Actora</actor> </character> <character> <name>Mr. Coder</name> <actor>El Act&#211;r</actor> </character> </characters> <plot> So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. </plot> <great-lines> <line>PHP solves all my web problems</line> </great-lines> <rating type="thumbs">7</rating> <rating type="stars">5</rating> </movie> <movie> <title>Title</title> <characters> <character> <name>Ms. Smith</name> <actor>Jane Doe</actor> </character> <character> <name>Mr. Smith</name> <actor>John Doe</actor> </character> </characters> <plot> There is no plot. </plot> <great-lines> <line>Yes?</line> <line>No!</line> </great-lines> <rating type="thumbs">3</rating> <rating type="stars">2</rating> </movie> </movies> XML; $xml = simplexml_load_string($xmlStr); echo '$xml:', "\n"; var_dump($xml); echo "\n"; echo '$xml->movie:', "\n"; var_dump($xml->movie); echo "\n"; echo '$xml->movie[0]:', "\n"; var_dump($xml->movie[0]); echo "\n"; echo 'iterator_to_array($xml->movie):', "\n"; var_dump(iterator_to_array($xml->movie)); echo "\n"; echo 'iterator_to_array($xml):', "\n"; var_dump(iterator_to_array($xml)); echo "\n";
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.16, 7.3.18 - 7.3.33, 7.4.0 - 7.4.4, 7.4.6 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
$xml: object(SimpleXMLElement)#1 (1) { ["movie"]=> array(2) { [0]=> object(SimpleXMLElement)#2 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#4 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#6 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#5 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } [1]=> object(SimpleXMLElement)#3 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#5 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#6 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#4 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> string(1) "3" [1]=> string(1) "2" } } } } $xml->movie: object(SimpleXMLElement)#3 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#4 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#6 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#5 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } $xml->movie[0]: object(SimpleXMLElement)#5 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#3 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#4 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#2 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } iterator_to_array($xml->movie): array(1) { ["movie"]=> object(SimpleXMLElement)#7 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#5 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#3 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#4 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#2 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> string(1) "3" [1]=> string(1) "2" } } } iterator_to_array($xml): array(1) { ["movie"]=> object(SimpleXMLElement)#5 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#7 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#4 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#3 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#2 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> string(1) "3" [1]=> string(1) "2" } } }
Output for 7.3.17, 7.4.5
$xml: object(SimpleXMLElement)#1 (1) { ["movie"]=> array(2) { [0]=> object(SimpleXMLElement)#2 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#4 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#8 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#9 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#5 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> object(SimpleXMLElement)#6 (2) { ["@attributes"]=> array(1) { ["type"]=> string(6) "thumbs" } [0]=> string(1) "7" } [1]=> object(SimpleXMLElement)#7 (2) { ["@attributes"]=> array(1) { ["type"]=> string(5) "stars" } [0]=> string(1) "5" } } } [1]=> object(SimpleXMLElement)#3 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#7 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#9 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#8 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#6 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> object(SimpleXMLElement)#5 (2) { ["@attributes"]=> array(1) { ["type"]=> string(6) "thumbs" } [0]=> string(1) "3" } [1]=> object(SimpleXMLElement)#4 (2) { ["@attributes"]=> array(1) { ["type"]=> string(5) "stars" } [0]=> string(1) "2" } } } } } $xml->movie: object(SimpleXMLElement)#3 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#4 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#8 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#9 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#5 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> object(SimpleXMLElement)#6 (2) { ["@attributes"]=> array(1) { ["type"]=> string(6) "thumbs" } [0]=> string(1) "7" } [1]=> object(SimpleXMLElement)#7 (2) { ["@attributes"]=> array(1) { ["type"]=> string(5) "stars" } [0]=> string(1) "5" } } } $xml->movie[0]: object(SimpleXMLElement)#7 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#3 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#4 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#9 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#2 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> object(SimpleXMLElement)#6 (2) { ["@attributes"]=> array(1) { ["type"]=> string(6) "thumbs" } [0]=> string(1) "7" } [1]=> object(SimpleXMLElement)#5 (2) { ["@attributes"]=> array(1) { ["type"]=> string(5) "stars" } [0]=> string(1) "5" } } } iterator_to_array($xml->movie): array(1) { ["movie"]=> object(SimpleXMLElement)#2 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#7 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#9 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#4 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#5 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> object(SimpleXMLElement)#6 (2) { ["@attributes"]=> array(1) { ["type"]=> string(6) "thumbs" } [0]=> string(1) "3" } [1]=> object(SimpleXMLElement)#3 (2) { ["@attributes"]=> array(1) { ["type"]=> string(5) "stars" } [0]=> string(1) "2" } } } } iterator_to_array($xml): array(1) { ["movie"]=> object(SimpleXMLElement)#6 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#2 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#4 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#9 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#3 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> object(SimpleXMLElement)#5 (2) { ["@attributes"]=> array(1) { ["type"]=> string(6) "thumbs" } [0]=> string(1) "3" } [1]=> object(SimpleXMLElement)#7 (2) { ["@attributes"]=> array(1) { ["type"]=> string(5) "stars" } [0]=> string(1) "2" } } } }
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
$xml: object(SimpleXMLElement)#1 (1) { ["movie"]=> array(2) { [0]=> object(SimpleXMLElement)#2 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#4 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#6 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#5 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } [1]=> object(SimpleXMLElement)#3 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#5 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#6 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#4 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> string(1) "3" [1]=> string(1) "2" } } } } $xml->movie: object(SimpleXMLElement)#3 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#4 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#6 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#5 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } $xml->movie[0]: object(SimpleXMLElement)#5 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#3 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#4 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#2 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } iterator_to_array($xml->movie): array(1) { ["movie"]=> object(SimpleXMLElement)#3 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#5 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#4 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#2 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> string(1) "3" [1]=> string(1) "2" } } } iterator_to_array($xml): array(1) { ["movie"]=> object(SimpleXMLElement)#2 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#3 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#4 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#5 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> string(1) "3" [1]=> string(1) "2" } } }
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
$xml: object(SimpleXMLElement)#1 (1) { ["movie"]=> array(2) { [0]=> object(SimpleXMLElement)#2 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#4 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#6 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#5 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } [1]=> object(SimpleXMLElement)#3 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#8 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#10 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#11 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#9 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> string(1) "3" [1]=> string(1) "2" } } } } $xml->movie: object(SimpleXMLElement)#12 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#14 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#16 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#17 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#15 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } $xml->movie[0]: object(SimpleXMLElement)#14 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#12 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#17 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#16 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#15 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } iterator_to_array($xml->movie): array(1) { ["movie"]=> object(SimpleXMLElement)#12 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#14 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#16 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#17 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#15 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> string(1) "3" [1]=> string(1) "2" } } } iterator_to_array($xml): array(1) { ["movie"]=> object(SimpleXMLElement)#15 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#12 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#17 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#16 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#14 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> string(1) "3" [1]=> string(1) "2" } } }
Output for 5.0.0 - 5.0.5
$xml: object(SimpleXMLElement)#1 (1) { ["movie"]=> array(2) { [0]=> object(SimpleXMLElement)#2 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#4 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#6 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#7 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#5 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } [1]=> object(SimpleXMLElement)#3 (5) { ["title"]=> string(5) "Title" ["characters"]=> object(SimpleXMLElement)#8 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#10 (2) { ["name"]=> string(9) "Ms. Smith" ["actor"]=> string(8) "Jane Doe" } [1]=> object(SimpleXMLElement)#11 (2) { ["name"]=> string(9) "Mr. Smith" ["actor"]=> string(8) "John Doe" } } } ["plot"]=> string(24) " There is no plot. " ["great-lines"]=> object(SimpleXMLElement)#9 (1) { ["line"]=> array(2) { [0]=> string(4) "Yes?" [1]=> string(3) "No!" } } ["rating"]=> array(2) { [0]=> string(1) "3" [1]=> string(1) "2" } } } } $xml->movie: object(SimpleXMLElement)#12 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#14 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#16 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#17 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#15 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } $xml->movie[0]: object(SimpleXMLElement)#14 (5) { ["title"]=> string(22) "PHP: Behind the Parser" ["characters"]=> object(SimpleXMLElement)#12 (1) { ["character"]=> array(2) { [0]=> object(SimpleXMLElement)#17 (2) { ["name"]=> string(9) "Ms. Coder" ["actor"]=> string(14) "Onlivia Actora" } [1]=> object(SimpleXMLElement)#16 (2) { ["name"]=> string(9) "Mr. Coder" ["actor"]=> string(9) "El ActÓr" } } } ["plot"]=> string(162) " So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. " ["great-lines"]=> object(SimpleXMLElement)#15 (1) { ["line"]=> string(30) "PHP solves all my web problems" } ["rating"]=> array(2) { [0]=> string(1) "7" [1]=> string(1) "5" } } iterator_to_array($xml->movie): Fatal error: Call to undefined function iterator_to_array() in /in/aQROH on line 68
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: simplexml_load_string() in /in/aQROH on line 53
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.1, 4.4.3 - 4.4.4
Fatal error: Call to undefined function: simplexml_load_string() in /in/aQROH on line 53
Process exited with code 255.
Output for 4.4.2
Fatal error: Call to undefined function: simplexml_load_string() in /in/aQROH on line 54
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: simplexml_load_string() in /in/aQROH on line 53

preferences:
318.33 ms | 401 KiB | 329 Q