3v4l.org

run code in 300+ PHP versions simultaneously
<?php $t = microtime(1); for ($i = 0; $i<100000; $i++){ count($xml->xpath('*')); } var_dump(microtime(1)-$t); $t = microtime(1); for ($i = 0; $i<100000; $i++){ $xml->count(); isset($xml->children()->tag); $xml->children()->tag; } var_dump(microtime(1)-$t);
Output for 7.0.5 - 7.0.20, 7.1.0 - 7.1.7, 7.2.0
Notice: Undefined variable: xml in /in/W6iJY on line 4 Fatal error: Uncaught Error: Call to a member function xpath() on null in /in/W6iJY:4 Stack trace: #0 {main} thrown in /in/W6iJY on line 4
Process exited with code 255.
Output for 7.0.0 - 7.0.4
Notice: Undefined variable: xml in /in/W6iJY on line 4 Fatal error: Uncaught Error: Call to a member function xpath() on unknown in /in/W6iJY:4 Stack trace: #0 {main} thrown in /in/W6iJY on line 4
Process exited with code 255.
Output for 5.6.0 - 5.6.29
Notice: Undefined variable: xml in /in/W6iJY on line 4 Fatal error: Call to a member function xpath() on null in /in/W6iJY on line 4
Process exited with code 255.

preferences:
84.65 ms | 401 KiB | 56 Q