3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MySessionStorage implements SessionHandlerInterface { private $path; function open($savePath, $sessionName) { $this->path = $savePath; } function close() { } function read($id) { return ''; } function write($id, $data) { return TRUE; } function destroy($id) { return TRUE; } function gc($maxlifetime) { return TRUE; } } if (session_set_save_handler(new MySessionStorage){ $toto = session_start(); }
Output for 7.0.0 - 7.0.1
Parse error: syntax error, unexpected ';' in /in/cXcYH on line 42
Process exited with code 255.
Output for 5.5.24 - 5.5.30, 5.6.8 - 5.6.16
Parse error: syntax error, unexpected '{' in /in/cXcYH on line 39
Process exited with code 255.

preferences:
165.38 ms | 1395 KiB | 25 Q