3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MySessionHandler implements \SessionHandlerInterface { public $messages = array(); public function open($savePath, $sessionName) { $this->messages[] = 'open ' . $sessionName; } public function close() { $this->messages[] = 'close'; } public function read($id) { $this->messages[] = 'read ' . $id; } public function write($id, $data) { $this->messages[] = 'write ' . $id . ': ' . $data; throw new \RuntimeException('bad'); } public function destroy($id) { $this->messages[] = 'destroy ' . $id; } public function gc($maxlifetime) { $this->messages[] = 'gc ' . var_export($maxlifetime, true); } public function __destruct() { var_dump($this->messages); } } $handler = new MySessionHandler(); session_set_save_handler($handler, true); $handler->messages[] = 'isset($_SESSION): ' . var_export(isset($_SESSION), true); $_SESSION['before'] = 'start'; session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = 'current session_id: ' . session_id(); session_regenerate_id(true); $handler->messages[] = 'current session_id: ' . session_id(); session_write_close(); session_start(); session_destroy(); $handler->messages[] = var_export($_SESSION, true); $handler->messages[] = 'current session_id: ' . var_export(session_id(), true); session_id('explicit-session-id'); session_start(); $_SESSION['john'] = 'doe';
Output for 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Deprecated: Return type of MySessionHandler::open($savePath, $sessionName) should either be compatible with SessionHandlerInterface::open(string $path, string $name): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/6X8pj on line 8 Deprecated: Return type of MySessionHandler::close() should either be compatible with SessionHandlerInterface::close(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/6X8pj on line 13 Deprecated: Return type of MySessionHandler::read($id) should either be compatible with SessionHandlerInterface::read(string $id): string|false, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/6X8pj on line 18 Deprecated: Return type of MySessionHandler::write($id, $data) should either be compatible with SessionHandlerInterface::write(string $id, string $data): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/6X8pj on line 23 Deprecated: Return type of MySessionHandler::destroy($id) should either be compatible with SessionHandlerInterface::destroy(string $id): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/6X8pj on line 29 Deprecated: Return type of MySessionHandler::gc($maxlifetime) should either be compatible with SessionHandlerInterface::gc(int $max_lifetime): int|false, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/6X8pj on line 34 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/6X8pj on line 46 Warning: session_start(): Session cannot be started after headers have already been sent in /in/6X8pj on line 51 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/6X8pj on line 56 Warning: session_start(): Session cannot be started after headers have already been sent in /in/6X8pj on line 60 Warning: session_destroy(): Trying to destroy uninitialized session in /in/6X8pj on line 61 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/6X8pj on line 66 Warning: session_start(): Session cannot be started after headers have already been sent in /in/6X8pj on line 67 array(5) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(20) "current session_id: " [2]=> string(20) "current session_id: " [3]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [4]=> string(22) "current session_id: ''" }
Output for 8.0.0 - 8.0.30
Fatal error: Uncaught TypeError: Session callback must have a return value of type bool, null returned in /in/6X8pj:51 Stack trace: #0 /in/6X8pj(51): session_start() #1 {main} thrown in /in/6X8pj on line 51 array(2) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" }
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: session_start(): Session callback expects true/false return value in /in/6X8pj on line 51 Warning: session_start(): Session callback expects true/false return value in /in/6X8pj on line 51 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/6X8pj on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/6X8pj on line 56 Warning: session_start(): Cannot start session when headers already sent in /in/6X8pj on line 60 Warning: session_destroy(): Trying to destroy uninitialized session in /in/6X8pj on line 61 Warning: session_id(): Cannot change session id when headers already sent in /in/6X8pj on line 66 Warning: session_start(): Cannot start session when headers already sent in /in/6X8pj on line 67 array(7) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(5) "close" [3]=> string(20) "current session_id: " [4]=> string(20) "current session_id: " [5]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [6]=> string(22) "current session_id: ''" }
Output for 7.1.0 - 7.1.33
Warning: session_start(): Session callback expects true/false return value in /in/6X8pj on line 51 Warning: session_start(): Session callback expects true/false return value in /in/6X8pj on line 51 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/6X8pj on line 51
Process exited with code 255.
Output for 7.0.0 - 7.0.33
Warning: session_start(): Session callback expects true/false return value in /in/6X8pj on line 51 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/6X8pj on line 51 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.40
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('0b675551e266368...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.39
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('0a8af43419cff3d...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.38
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('586877bd98d7657...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.37
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('f975c43ab9c940d...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.36
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('b75886b95df249d...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.35
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('24da5bad83210ea...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.34
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('47058cf7e9d74f9...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.33
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('ed0a6bfbe0aedd4...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.32
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('241146d58527072...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.31
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('a043ace81ba4a65...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.30
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('597e248c0634ff6...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.29
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('5ded4a870120cfd...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.28
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('6bd2e3d5e7272f0...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.27
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('07c9180ee648867...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.26
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('79a88ac8ca27fc1...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.25
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('8fe61d20e95d49d...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.24
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('5e280f988f05886...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.23
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('7277ac3c0cd4c6b...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.22
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('c61a663862a3ae8...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.21
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('4cfea96d3505306...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.20
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('3469a842ec5927e...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.19
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('34a9786352681e8...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.18
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('7743018a57a4884...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.17
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('21702ab0b2c8682...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.16
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('497febc4f820d5a...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.15
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('6d566466a4d55c8...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.14
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('c1a52e9e23d9c44...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.13
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('f4519e98cb366d1...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.12
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('8d0e7c96bee4140...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.11
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('05802131215416a...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.10
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('ac3f927d25f8294...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.9
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('e44190a6abcb4ac...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.8
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('9406a1eb4e384ae...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.7
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('e00b007d54ca613...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.6
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('5b043f4b7663d3a...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.5
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('361bde94bde8ef6...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.4
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('80306bff510ee3f...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.3
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('d68e660bd83b32e...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.2
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('2ce7c4f892f3a55...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.1
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('ca803e3c5fb7b72...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.6.0
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('2f6f8ddce994585...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.38
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('ca1bba566db1b64...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.37
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('87f52cc37a541c5...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.36
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('cae5d30815300ab...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.35
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('2946d1d3ee0e337...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.34
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('0ea66f3dc540d1f...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.33
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('80bdc71ea83a4cc...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.32
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('533cd969647de6b...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.31
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('fc83e03bde9be90...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.30
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('261dd1a6454df0f...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.29
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('cc37571116bdb5d...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.28
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('8f7a981df430f5b...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.27
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('eeba9d98abc1a54...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.26
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('c8bb255a765a0b0...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.25
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('19d02157074e2ca...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.24
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('71497ffcb3b6db4...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.23
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('cc433814b1db12d...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.22
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('d511e9d633202de...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.21
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('2fa4fe333eb67a3...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.20
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('9d71641238263cc...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.19
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('d2994633a6e1335...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.18
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('eb98143fde3de23...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.17
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('b24eebffb347e03...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.16
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('c334f05dccb2e32...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.15
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('46c74c534480bb3...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.14
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('f7c144a49a6c82e...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.13
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('3e82f5eebc49078...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.12
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('947d724ef7e3c91...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.11
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('22e78839159ed72...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.10
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('10673d3a88288fa...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.9
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('1af23978b2a5c8e...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.8
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('37bb1343bf5b500...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.7
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('348aff647b9ea4d...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.6
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('75ee8a0bab36ae0...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.5
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('723d4eb5b1cec78...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.4
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('d9140cc469dfe58...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.3
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('e8e9cc972c590ec...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.2
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('6b856015cd27e5f...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.1
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('571f6fc68805aa4...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.5.0
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('f1bb3d7df40a761...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.45
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('4fb14c5947e1a93...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.44
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('4a517e07a505cc8...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.43
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('41fd746175a661e...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.42
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('3f30bac5515e27e...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.41
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('0c3c36da1ba50ab...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.40
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('d0ffdb25c09decc...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.39
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('12fa44875220269...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.38
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('110b0179118ec60...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.37
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('412bbbdf23e83c1...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.36
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('648a4ff0dc71172...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.35
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('8a519c91cf77ddd...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.34
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('04ea5582d796bc5...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.33
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('57712e609f851a4...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.32
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('f5c8d38ae6ab3e1...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.31
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('b6ed6ca14a03673...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.30
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('1fb50cde017f345...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.29
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('276fee1f91af906...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.28
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('7bacfaaea7cce71...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.27
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('ffb52a5a36b226f...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.26
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('e528e2c2ef53c48...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.25
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('af2cdb0afdfa3cc...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.24
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('d1a361fea757630...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.23
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('3b77d6343592927...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.22
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('b5fb5da32e6bb5c...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.21
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('93c637bfba71855...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.20
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('9a23be9be962ac0...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.19
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('9b8aea4c62b6151...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.18
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('6c4f2c381e41c12...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.17
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('1747755051d8da5...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.16
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('135115644572ae2...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.15
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('f97d5b3a76c5eb5...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.14
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('ce134a0e8285a56...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.13
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('887aaef7d4f8bc4...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.12
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('b8f1b4a4fd271bc...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.11
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('445faa36e3898a3...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.10
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('270a07b61081d58...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.9
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('086231319d5a489...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.8
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('66448fedaf5eb16...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.7
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('bde1e3a003ad8b6...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.6
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('4a5ea4fb85771f3...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.5
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('8bd1c0d77b86ae5...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.4
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('9898031d006c920...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.3
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('2df4f27a39546a8...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.2
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('5ff516b207f8353...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.1
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('ab60ef3b4df5740...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.4.0
Fatal error: Uncaught exception 'RuntimeException' with message 'bad' in /in/6X8pj:26 Stack trace: #0 [internal function]: MySessionHandler->write('67c316c5e6f9640...', 'foo|s:3:"bar";') #1 /in/6X8pj(58): session_write_close() #2 {main} thrown in /in/6X8pj on line 26
Process exited with code 255.
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/6X8pj on line 5
Process exited with code 255.
Output for 5.2.3 - 5.2.17
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/6X8pj on line 4 Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/6X8pj on line 26 Fatal error: Interface 'SessionHandlerInterface' not found in /in/6X8pj on line 4
Process exited with code 255.
Output for 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.2
<br /> <b>Warning</b>: Unexpected character in input: '\' (ASCII=92) state=1 in <b>/in/6X8pj</b> on line <b>4</b><br /> <br /> <b>Warning</b>: Unexpected character in input: '\' (ASCII=92) state=1 in <b>/in/6X8pj</b> on line <b>26</b><br /> <br /> <b>Fatal error</b>: Interface 'SessionHandlerInterface' not found in <b>/in/6X8pj</b> on line <b>4</b><br />
Process exited with code 255.
Output for 5.0.0 - 5.0.4
<br /> <b>Warning</b>: Unexpected character in input: '\' (ASCII=92) state=1 in <b>/in/6X8pj</b> on line <b>4</b><br /> <br /> <b>Warning</b>: Unexpected character in input: '\' (ASCII=92) state=1 in <b>/in/6X8pj</b> on line <b>26</b><br /> <br /> <b>Fatal error</b>: Class 'SessionHandlerInterface' not found in <b>/in/6X8pj</b> on line <b>4</b><br />
Process exited with code 255.
Output for 4.4.2 - 4.4.9
<br /> <b>Parse error</b>: syntax error, unexpected T_STRING, expecting '{' in <b>/in/6X8pj</b> on line <b>4</b><br />
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
<br /> <b>Parse error</b>: parse error, unexpected T_STRING, expecting '{' in <b>/in/6X8pj</b> on line <b>4</b><br />
Process exited with code 255.
Output for 4.3.2 - 4.3.4
<br /> <b>Parse error</b>: parse error, expecting `'{'' in <b>/in/6X8pj</b> on line <b>4</b><br />
Process exited with code 255.

preferences:
317.35 ms | 401 KiB | 456 Q