3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xmlstr = '<?xml version="1.0"?> <catalog> <car> <title>This is car</title> <price>44.95</price> <model>2018</model> <description>An in-depth look at creating applications with XML.</description> </car> <bike> <title>this is bike</title> <price>33.58</price> <description>Just the dummy description</description> </bike> <wheels> <title>this is wheel</title> <price>33.58</price> <description>Just the dummy description</description> </wheels> <bike> <title>this is bike</title> <price>33.58</price> <description>Just the dummy description</description> </bike> </catalog>'; $xml = simplexml_load_string($xmlstr); foreach ($xml->children() as $product) { if ($product->getName() == 'car') { carFunc($product->title, $product->price, $product->model, $product->description); } if ($product->getName() == 'bike') { bikeFunc($product->title, $product->price, $product->description); } if ($product->getName() == 'wheels') { wheelFunc($product->title, $product->price, $product->description); } } function carFunc($title, $price, $model, $description) { echo "Car: $title: It's a $model selling for $price. In detail: $description\n"; } function bikeFunc($title, $price, $description) { echo "Bike: $title: It sells for $price. In detail: $description\n"; } function wheelFunc($title, $price, $description) { echo "Wheel: $title: It sells for $price. In detail: $description\n"; }
Output for 5.1.3 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 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
Car: This is car: It's a 2018 selling for 44.95. In detail: An in-depth look at creating applications with XML. Bike: this is bike: It sells for 33.58. In detail: Just the dummy description Wheel: this is wheel: It sells for 33.58. In detail: Just the dummy description Bike: this is bike: It sells for 33.58. In detail: Just the dummy description
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.2
Fatal error: Call to undefined method SimpleXMLElement::getName() in /in/jX0qd on line 33
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: simplexml_load_string() in /in/jX0qd on line 31
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: simplexml_load_string() in /in/jX0qd on line 31
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: simplexml_load_string() in /in/jX0qd on line 31

preferences:
267.51 ms | 401 KiB | 450 Q