3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = <<<XML <smses count="1099"> <sms protocol="0" address="" date="" type="" subject="" body="" toa="null" sc_toa="null" service_center="null" read="1" status="-1" locked="0" date_sent="null" readable_date="" contact_name="" /> </smses> XML; $dom = new DOMDocument(); $dom->loadXML($xml); $smses = $dom->getElementsByTagName('smses'); foreach ($smses->sms as $sms) { foreach ($sms->attributes as $attr) { $name = $attr->nodeName; $value = $attr->nodeValue; echo "Attribute '$name' :: '$value'"; } }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Warning: Undefined property: DOMNodeList::$sms in /in/nBEhO on line 14 Warning: foreach() argument must be of type array|object, null given in /in/nBEhO on line 14
Output for 5.2.6 - 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.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0 - 7.2.33, 7.3.12 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined property: DOMNodeList::$sms in /in/nBEhO on line 14 Warning: Invalid argument supplied for foreach() in /in/nBEhO on line 14
Output for 5.0.4 - 5.0.5, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6, 5.2.0, 7.3.32 - 7.3.33
Warning: Invalid argument supplied for foreach() in /in/nBEhO on line 14
Output for 5.0.0 - 5.0.3, 5.2.1 - 5.2.5
Notice: Undefined property: DOMNodeList::$sms in /in/nBEhO on line 14 Warning: Invalid argument supplied for foreach() in /in/nBEhO on line 14
Output for 5.1.2
Warning: Invalid argument supplied for foreach() in /in/nBEhO on line 15
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.1, 4.4.3 - 4.4.9
Fatal error: Cannot instantiate non-existent class: domdocument in /in/nBEhO on line 11
Process exited with code 255.
Output for 4.4.2
Fatal error: Cannot instantiate non-existent class: domdocument in /in/nBEhO on line 12
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Cannot instantiate non-existent class: domdocument in /in/nBEhO on line 11

preferences:
289.26 ms | 401 KiB | 352 Q