3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str=<<<XML <data> <versions> <version> <n>0.1.0</n> <changes>First Public Release</changes> <note>This is a Beta</note> </version> </versions> <servers> </servers> </data> XML; $serverIP = "192.168.0.1"; $serverPort = 81; $xml=simplexml_load_string($str); $main_server = $xml->servers->xpath('//server[@ip="' . $serverIP . '"][@port="' . $serverPort . '"]'); echo "tot:" . count(main_server); if(count(main_server) == 0){ echo "cacca"; $server = $xml->servers->addChild('server'); $server->addAttribute('ip', $serverIP); $server->addAttribute('port', $serverPort); $server->addAttribute('pluginVersion', $serverPluginVersion); $server->addAttribute('arenaCount', $serverArena); }else{ } var_dump ($main_server);
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
Fatal error: Uncaught Error: Undefined constant "main_server" in /in/oL2fM:23 Stack trace: #0 {main} thrown in /in/oL2fM on line 23
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: Use of undefined constant main_server - assumed 'main_server' (this will throw an Error in a future version of PHP) in /in/oL2fM on line 23 Warning: count(): Parameter must be an array or an object that implements Countable in /in/oL2fM on line 23 tot:1 Warning: Use of undefined constant main_server - assumed 'main_server' (this will throw an Error in a future version of PHP) in /in/oL2fM on line 25 Warning: count(): Parameter must be an array or an object that implements Countable in /in/oL2fM on line 25 array(0) { }
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.1, 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.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33
Notice: Use of undefined constant main_server - assumed 'main_server' in /in/oL2fM on line 23 tot:1 Notice: Use of undefined constant main_server - assumed 'main_server' in /in/oL2fM on line 25 array(0) { }
Output for 5.1.2
Notice: Use of undefined constant main_server - assumed 'main_server' in /in/oL2fM on line 24 tot:1 Notice: Use of undefined constant main_server - assumed 'main_server' in /in/oL2fM on line 26 array(0) { }
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: simplexml_load_string() in /in/oL2fM on line 20
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/oL2fM on line 20
Process exited with code 255.
Output for 4.4.2
Fatal error: Call to undefined function: simplexml_load_string() in /in/oL2fM on line 21
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: simplexml_load_string() in /in/oL2fM on line 20

preferences:
269.93 ms | 401 KiB | 340 Q