3v4l.org

run code in 300+ PHP versions simultaneously
<?php class errorTest { $error private function handleError($e,$d) { die("$e : $d"); } function errorTest() { set_error_handler(array($this,'handleError')); echo 5/0; } } $d = new errorTest();
Output for 5.4.0 - 5.4.13
Parse error: syntax error, unexpected '$error' (T_VARIABLE), expecting function (T_FUNCTION) in /in/t36kL on line 4
Process exited with code 255.
Output for 5.3.0 - 5.3.23
Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /in/t36kL on line 4
Process exited with code 255.

preferences:
165.07 ms | 1395 KiB | 45 Q