3v4l.org

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

preferences:
159.79 ms | 1395 KiB | 25 Q