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); var_dump ($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); } $main_server = $xml->servers->xpath('//server[@ip="' . $serverIP . '"][@port="' . $serverPort . '"]'); var_dump ($main_server);
Output for 5.2.2 - 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, 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.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
tot:0array(0) { } caccaarray(1) { [0]=> object(SimpleXMLElement)#5 (1) { ["@attributes"]=> array(2) { ["ip"]=> string(11) "192.168.0.1" ["port"]=> string(2) "81" } } }
Output for 5.1.3 - 5.1.6, 5.2.0 - 5.2.1
tot:0array(0) { } caccaarray(1) { [0]=> object(SimpleXMLElement)#3 (1) { ["@attributes"]=> array(2) { ["ip"]=> string(11) "192.168.0.1" ["port"]=> string(2) "81" } } }
Output for 5.1.2
tot:0array(0) { } cacca Fatal error: Call to undefined method SimpleXMLElement::addChild() in /in/3cp3R on line 30
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.1
tot:0array(0) { } cacca Fatal error: Call to undefined method SimpleXMLElement::addChild() in /in/3cp3R on line 29
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: simplexml_load_string() in /in/3cp3R 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/3cp3R on line 20
Process exited with code 255.
Output for 4.4.2
Fatal error: Call to undefined function: simplexml_load_string() in /in/3cp3R 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/3cp3R on line 20

preferences:
267.94 ms | 401 KiB | 355 Q