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; } public function destroy($id) { $this->messages[] = 'destroy ' . $id; } public function gc($maxlifetime) { $this->messages[] = 'gc ' . $maxlifetime; } public function __destruct() { var_dump($this->messages); } } $handler = new MySessionHandler(); session_set_save_handler($handler, true); $handler->messages[] = var_export($_SESSION, true); session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = session_id(); session_regenerate_id(); $handler->messages[] = session_id(); session_write_close(); session_start(); session_destroy(); $handler->messages[] = var_export($_SESSION, true); $handler->messages[] = session_id(); 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/iiYfg 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/iiYfg 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/iiYfg 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/iiYfg 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/iiYfg on line 28 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/iiYfg on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/iiYfg on line 45 Warning: Undefined global variable $_SESSION in /in/iiYfg on line 47 Warning: session_start(): Session cannot be started after headers have already been sent in /in/iiYfg on line 49 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/iiYfg on line 54 Warning: session_start(): Session cannot be started after headers have already been sent in /in/iiYfg on line 59 Warning: session_destroy(): Trying to destroy uninitialized session in /in/iiYfg on line 60 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/iiYfg on line 65 Warning: session_start(): Session cannot be started after headers have already been sent in /in/iiYfg on line 66 array(5) { [0]=> string(4) "NULL" [1]=> string(0) "" [2]=> string(0) "" [3]=> string(27) "array ( 'foo' => 'bar', )" [4]=> string(0) "" }
Output for 8.0.0 - 8.0.30
Warning: Undefined variable $_SESSION in /in/iiYfg on line 47 Warning: session_start(): Session cannot be started after headers have already been sent in /in/iiYfg on line 49 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/iiYfg on line 54 Warning: session_start(): Session cannot be started after headers have already been sent in /in/iiYfg on line 59 Warning: session_destroy(): Trying to destroy uninitialized session in /in/iiYfg on line 60 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/iiYfg on line 65 Warning: session_start(): Session cannot be started after headers have already been sent in /in/iiYfg on line 66 array(5) { [0]=> string(4) "NULL" [1]=> string(0) "" [2]=> string(0) "" [3]=> string(27) "array ( 'foo' => 'bar', )" [4]=> string(0) "" }
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot start session when headers already sent in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/iiYfg on line 54 Warning: session_start(): Cannot start session when headers already sent in /in/iiYfg on line 59 Warning: session_destroy(): Trying to destroy uninitialized session in /in/iiYfg on line 60 Warning: session_id(): Cannot change session id when headers already sent in /in/iiYfg on line 65 Warning: session_start(): Cannot start session when headers already sent in /in/iiYfg on line 66 array(5) { [0]=> string(4) "NULL" [1]=> string(0) "" [2]=> string(0) "" [3]=> string(27) "array ( 'foo' => 'bar', )" [4]=> string(0) "" }
Output for 7.3.32 - 7.3.33
Warning: session_start(): Session callback expects true/false return value in /in/iiYfg on line 49 Warning: session_start(): Session callback expects true/false return value in /in/iiYfg on line 49 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/iiYfg on line 54 Warning: session_start(): Cannot start session when headers already sent in /in/iiYfg on line 59 Warning: session_destroy(): Trying to destroy uninitialized session in /in/iiYfg on line 60 Warning: session_id(): Cannot change session id when headers already sent in /in/iiYfg on line 65 Warning: session_start(): Cannot start session when headers already sent in /in/iiYfg on line 66 array(7) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(5) "close" [3]=> string(0) "" [4]=> string(0) "" [5]=> string(27) "array ( 'foo' => 'bar', )" [6]=> string(0) "" }
Output for 7.1.0 - 7.1.25
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Session callback expects true/false return value in /in/iiYfg on line 49 Warning: session_start(): Session callback expects true/false return value in /in/iiYfg on line 49 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/iiYfg on line 49
Process exited with code 255.
Output for 7.0.0 - 7.0.20
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Session callback expects true/false return value in /in/iiYfg on line 49 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/iiYfg on line 49 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.28
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b8979ebe80331e8a004d79cb6f0ed66a" [3]=> string(32) "b8979ebe80331e8a004d79cb6f0ed66a" [4]=> string(32) "b8979ebe80331e8a004d79cb6f0ed66a" [5]=> string(54) "write b8979ebe80331e8a004d79cb6f0ed66a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b8979ebe80331e8a004d79cb6f0ed66a" [9]=> string(40) "destroy b8979ebe80331e8a004d79cb6f0ed66a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.21
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1d44a6e6018d22873b75b0db3e052083" [3]=> string(32) "1d44a6e6018d22873b75b0db3e052083" [4]=> string(32) "1d44a6e6018d22873b75b0db3e052083" [5]=> string(54) "write 1d44a6e6018d22873b75b0db3e052083: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1d44a6e6018d22873b75b0db3e052083" [9]=> string(40) "destroy 1d44a6e6018d22873b75b0db3e052083" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.20
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1eeb02322c3ac5858ed3ea2fce7be2fe" [3]=> string(32) "1eeb02322c3ac5858ed3ea2fce7be2fe" [4]=> string(32) "1eeb02322c3ac5858ed3ea2fce7be2fe" [5]=> string(54) "write 1eeb02322c3ac5858ed3ea2fce7be2fe: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1eeb02322c3ac5858ed3ea2fce7be2fe" [9]=> string(40) "destroy 1eeb02322c3ac5858ed3ea2fce7be2fe" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.19
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 920e1e2b054d8962a49224d7ccca8c6f" [3]=> string(32) "920e1e2b054d8962a49224d7ccca8c6f" [4]=> string(32) "920e1e2b054d8962a49224d7ccca8c6f" [5]=> string(54) "write 920e1e2b054d8962a49224d7ccca8c6f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 920e1e2b054d8962a49224d7ccca8c6f" [9]=> string(40) "destroy 920e1e2b054d8962a49224d7ccca8c6f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.18
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ae0a5842cf6658d8c412fda1d1e2f57a" [3]=> string(32) "ae0a5842cf6658d8c412fda1d1e2f57a" [4]=> string(32) "ae0a5842cf6658d8c412fda1d1e2f57a" [5]=> string(54) "write ae0a5842cf6658d8c412fda1d1e2f57a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ae0a5842cf6658d8c412fda1d1e2f57a" [9]=> string(40) "destroy ae0a5842cf6658d8c412fda1d1e2f57a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.17
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0ea2972eadb4caf15f9121839a9ff01f" [3]=> string(32) "0ea2972eadb4caf15f9121839a9ff01f" [4]=> string(32) "0ea2972eadb4caf15f9121839a9ff01f" [5]=> string(54) "write 0ea2972eadb4caf15f9121839a9ff01f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0ea2972eadb4caf15f9121839a9ff01f" [9]=> string(40) "destroy 0ea2972eadb4caf15f9121839a9ff01f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.16
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 34798f85b1644a1905a45b8291fd32d9" [3]=> string(32) "34798f85b1644a1905a45b8291fd32d9" [4]=> string(32) "34798f85b1644a1905a45b8291fd32d9" [5]=> string(54) "write 34798f85b1644a1905a45b8291fd32d9: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 34798f85b1644a1905a45b8291fd32d9" [9]=> string(40) "destroy 34798f85b1644a1905a45b8291fd32d9" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.15
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(18) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6d95c723188b1304516d2da36f7a1d7a" [3]=> string(7) "gc 1440" [4]=> string(32) "6d95c723188b1304516d2da36f7a1d7a" [5]=> string(32) "6d95c723188b1304516d2da36f7a1d7a" [6]=> string(54) "write 6d95c723188b1304516d2da36f7a1d7a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 6d95c723188b1304516d2da36f7a1d7a" [10]=> string(40) "destroy 6d95c723188b1304516d2da36f7a1d7a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(0) "" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.14
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2b467b6c2f9e363b6df22d70d9d4b011" [3]=> string(32) "2b467b6c2f9e363b6df22d70d9d4b011" [4]=> string(32) "2b467b6c2f9e363b6df22d70d9d4b011" [5]=> string(54) "write 2b467b6c2f9e363b6df22d70d9d4b011: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 2b467b6c2f9e363b6df22d70d9d4b011" [9]=> string(40) "destroy 2b467b6c2f9e363b6df22d70d9d4b011" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.13
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 489b27bdd0d41b037ae56f7046154f15" [3]=> string(32) "489b27bdd0d41b037ae56f7046154f15" [4]=> string(32) "489b27bdd0d41b037ae56f7046154f15" [5]=> string(54) "write 489b27bdd0d41b037ae56f7046154f15: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 489b27bdd0d41b037ae56f7046154f15" [9]=> string(40) "destroy 489b27bdd0d41b037ae56f7046154f15" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.12
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cb24b760fabb41ed2204164e722f29ed" [3]=> string(32) "cb24b760fabb41ed2204164e722f29ed" [4]=> string(32) "cb24b760fabb41ed2204164e722f29ed" [5]=> string(54) "write cb24b760fabb41ed2204164e722f29ed: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read cb24b760fabb41ed2204164e722f29ed" [9]=> string(40) "destroy cb24b760fabb41ed2204164e722f29ed" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.11
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e71abd06c3f0614c6d91166e61a6c279" [3]=> string(32) "e71abd06c3f0614c6d91166e61a6c279" [4]=> string(32) "e71abd06c3f0614c6d91166e61a6c279" [5]=> string(54) "write e71abd06c3f0614c6d91166e61a6c279: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e71abd06c3f0614c6d91166e61a6c279" [9]=> string(40) "destroy e71abd06c3f0614c6d91166e61a6c279" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.10
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fc6d7f91a83eba5b8d07cc29313154d2" [3]=> string(32) "fc6d7f91a83eba5b8d07cc29313154d2" [4]=> string(32) "fc6d7f91a83eba5b8d07cc29313154d2" [5]=> string(54) "write fc6d7f91a83eba5b8d07cc29313154d2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read fc6d7f91a83eba5b8d07cc29313154d2" [9]=> string(40) "destroy fc6d7f91a83eba5b8d07cc29313154d2" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.9
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ea3c3e55264e45259a981fe02fae46f6" [3]=> string(32) "ea3c3e55264e45259a981fe02fae46f6" [4]=> string(32) "ea3c3e55264e45259a981fe02fae46f6" [5]=> string(54) "write ea3c3e55264e45259a981fe02fae46f6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ea3c3e55264e45259a981fe02fae46f6" [9]=> string(40) "destroy ea3c3e55264e45259a981fe02fae46f6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.8
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 854cfffe8defdc9fcfe71c5e114ddbbb" [3]=> string(32) "854cfffe8defdc9fcfe71c5e114ddbbb" [4]=> string(32) "854cfffe8defdc9fcfe71c5e114ddbbb" [5]=> string(54) "write 854cfffe8defdc9fcfe71c5e114ddbbb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 854cfffe8defdc9fcfe71c5e114ddbbb" [9]=> string(40) "destroy 854cfffe8defdc9fcfe71c5e114ddbbb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.7
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 866be064c1391adaccbde482ad3f4132" [3]=> string(32) "866be064c1391adaccbde482ad3f4132" [4]=> string(32) "866be064c1391adaccbde482ad3f4132" [5]=> string(54) "write 866be064c1391adaccbde482ad3f4132: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 866be064c1391adaccbde482ad3f4132" [9]=> string(40) "destroy 866be064c1391adaccbde482ad3f4132" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.35
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ecf73c7d04625b641fc91caaa6f23568" [3]=> string(32) "ecf73c7d04625b641fc91caaa6f23568" [4]=> string(32) "ecf73c7d04625b641fc91caaa6f23568" [5]=> string(54) "write ecf73c7d04625b641fc91caaa6f23568: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ecf73c7d04625b641fc91caaa6f23568" [9]=> string(40) "destroy ecf73c7d04625b641fc91caaa6f23568" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.34
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6170fec4a77997a4caee7b3489789926" [3]=> string(32) "6170fec4a77997a4caee7b3489789926" [4]=> string(32) "6170fec4a77997a4caee7b3489789926" [5]=> string(54) "write 6170fec4a77997a4caee7b3489789926: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6170fec4a77997a4caee7b3489789926" [9]=> string(40) "destroy 6170fec4a77997a4caee7b3489789926" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.33
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 593e1fad17e7400b5a0a9dfdbc103a3e" [3]=> string(32) "593e1fad17e7400b5a0a9dfdbc103a3e" [4]=> string(32) "593e1fad17e7400b5a0a9dfdbc103a3e" [5]=> string(54) "write 593e1fad17e7400b5a0a9dfdbc103a3e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 593e1fad17e7400b5a0a9dfdbc103a3e" [9]=> string(40) "destroy 593e1fad17e7400b5a0a9dfdbc103a3e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.32
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3814c8ee613fb4f6a121f9e1da861aff" [3]=> string(32) "3814c8ee613fb4f6a121f9e1da861aff" [4]=> string(32) "3814c8ee613fb4f6a121f9e1da861aff" [5]=> string(54) "write 3814c8ee613fb4f6a121f9e1da861aff: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3814c8ee613fb4f6a121f9e1da861aff" [9]=> string(40) "destroy 3814c8ee613fb4f6a121f9e1da861aff" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.31
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 787a8e362bde1b7a33a2ca6338bc6d08" [3]=> string(32) "787a8e362bde1b7a33a2ca6338bc6d08" [4]=> string(32) "787a8e362bde1b7a33a2ca6338bc6d08" [5]=> string(54) "write 787a8e362bde1b7a33a2ca6338bc6d08: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 787a8e362bde1b7a33a2ca6338bc6d08" [9]=> string(40) "destroy 787a8e362bde1b7a33a2ca6338bc6d08" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.30
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ceb4dd1ebe92be0f526a7b9ad7fc79c9" [3]=> string(32) "ceb4dd1ebe92be0f526a7b9ad7fc79c9" [4]=> string(32) "ceb4dd1ebe92be0f526a7b9ad7fc79c9" [5]=> string(54) "write ceb4dd1ebe92be0f526a7b9ad7fc79c9: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ceb4dd1ebe92be0f526a7b9ad7fc79c9" [9]=> string(40) "destroy ceb4dd1ebe92be0f526a7b9ad7fc79c9" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.29
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 59a29edb9f98be5f72d24ec22238e6b8" [3]=> string(32) "59a29edb9f98be5f72d24ec22238e6b8" [4]=> string(32) "59a29edb9f98be5f72d24ec22238e6b8" [5]=> string(54) "write 59a29edb9f98be5f72d24ec22238e6b8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 59a29edb9f98be5f72d24ec22238e6b8" [9]=> string(40) "destroy 59a29edb9f98be5f72d24ec22238e6b8" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.28
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 96c3a953845c70a2db7cb0dbc0212f64" [3]=> string(32) "96c3a953845c70a2db7cb0dbc0212f64" [4]=> string(32) "96c3a953845c70a2db7cb0dbc0212f64" [5]=> string(54) "write 96c3a953845c70a2db7cb0dbc0212f64: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 96c3a953845c70a2db7cb0dbc0212f64" [9]=> string(40) "destroy 96c3a953845c70a2db7cb0dbc0212f64" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.27
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7c68c91c33538251ebacda12920d656a" [3]=> string(32) "7c68c91c33538251ebacda12920d656a" [4]=> string(32) "7c68c91c33538251ebacda12920d656a" [5]=> string(54) "write 7c68c91c33538251ebacda12920d656a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7c68c91c33538251ebacda12920d656a" [9]=> string(40) "destroy 7c68c91c33538251ebacda12920d656a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.26
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9a028341ecac02512caafb6ef4165a43" [3]=> string(32) "9a028341ecac02512caafb6ef4165a43" [4]=> string(32) "9a028341ecac02512caafb6ef4165a43" [5]=> string(54) "write 9a028341ecac02512caafb6ef4165a43: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9a028341ecac02512caafb6ef4165a43" [9]=> string(40) "destroy 9a028341ecac02512caafb6ef4165a43" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.25
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 77634c1704ef0802ef927db8c3aeab71" [3]=> string(32) "77634c1704ef0802ef927db8c3aeab71" [4]=> string(32) "77634c1704ef0802ef927db8c3aeab71" [5]=> string(54) "write 77634c1704ef0802ef927db8c3aeab71: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 77634c1704ef0802ef927db8c3aeab71" [9]=> string(40) "destroy 77634c1704ef0802ef927db8c3aeab71" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.24
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9ce083bdb7b066f30af9f983037fa012" [3]=> string(32) "9ce083bdb7b066f30af9f983037fa012" [4]=> string(32) "9ce083bdb7b066f30af9f983037fa012" [5]=> string(54) "write 9ce083bdb7b066f30af9f983037fa012: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9ce083bdb7b066f30af9f983037fa012" [9]=> string(40) "destroy 9ce083bdb7b066f30af9f983037fa012" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.45
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 47ea5214c01da149dde8153a25a9cfe8" [3]=> string(32) "47ea5214c01da149dde8153a25a9cfe8" [4]=> string(32) "47ea5214c01da149dde8153a25a9cfe8" [5]=> string(54) "write 47ea5214c01da149dde8153a25a9cfe8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 47ea5214c01da149dde8153a25a9cfe8" [9]=> string(40) "destroy 47ea5214c01da149dde8153a25a9cfe8" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.44
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f2785642bbd1885d671acd16a606afc7" [3]=> string(32) "f2785642bbd1885d671acd16a606afc7" [4]=> string(32) "f2785642bbd1885d671acd16a606afc7" [5]=> string(54) "write f2785642bbd1885d671acd16a606afc7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f2785642bbd1885d671acd16a606afc7" [9]=> string(40) "destroy f2785642bbd1885d671acd16a606afc7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.43
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(18) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8f3f3596e79b8e727599664ed9e63381" [3]=> string(32) "8f3f3596e79b8e727599664ed9e63381" [4]=> string(32) "8f3f3596e79b8e727599664ed9e63381" [5]=> string(54) "write 8f3f3596e79b8e727599664ed9e63381: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 8f3f3596e79b8e727599664ed9e63381" [9]=> string(40) "destroy 8f3f3596e79b8e727599664ed9e63381" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(7) "gc 1440" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.42
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ae48bf66d87b7584d97e1ec907abf812" [3]=> string(32) "ae48bf66d87b7584d97e1ec907abf812" [4]=> string(32) "ae48bf66d87b7584d97e1ec907abf812" [5]=> string(54) "write ae48bf66d87b7584d97e1ec907abf812: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ae48bf66d87b7584d97e1ec907abf812" [9]=> string(40) "destroy ae48bf66d87b7584d97e1ec907abf812" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.41
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 675ad00f2e433d4487ec834030f3b869" [3]=> string(32) "675ad00f2e433d4487ec834030f3b869" [4]=> string(32) "675ad00f2e433d4487ec834030f3b869" [5]=> string(54) "write 675ad00f2e433d4487ec834030f3b869: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 675ad00f2e433d4487ec834030f3b869" [9]=> string(40) "destroy 675ad00f2e433d4487ec834030f3b869" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.40
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3e6831e74a7da39aa798fe6e6e2718e3" [3]=> string(32) "3e6831e74a7da39aa798fe6e6e2718e3" [4]=> string(32) "3e6831e74a7da39aa798fe6e6e2718e3" [5]=> string(54) "write 3e6831e74a7da39aa798fe6e6e2718e3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3e6831e74a7da39aa798fe6e6e2718e3" [9]=> string(40) "destroy 3e6831e74a7da39aa798fe6e6e2718e3" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.39
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(18) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6fec031c38adec4f17d3de1b9cac63c1" [3]=> string(7) "gc 1440" [4]=> string(32) "6fec031c38adec4f17d3de1b9cac63c1" [5]=> string(32) "6fec031c38adec4f17d3de1b9cac63c1" [6]=> string(54) "write 6fec031c38adec4f17d3de1b9cac63c1: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 6fec031c38adec4f17d3de1b9cac63c1" [10]=> string(40) "destroy 6fec031c38adec4f17d3de1b9cac63c1" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(0) "" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.38
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cf19ca4c68d2e0233206c5f766ab3380" [3]=> string(32) "cf19ca4c68d2e0233206c5f766ab3380" [4]=> string(32) "cf19ca4c68d2e0233206c5f766ab3380" [5]=> string(54) "write cf19ca4c68d2e0233206c5f766ab3380: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read cf19ca4c68d2e0233206c5f766ab3380" [9]=> string(40) "destroy cf19ca4c68d2e0233206c5f766ab3380" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.37
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read df3bfd9be72f8588b94ddcac8112503f" [3]=> string(32) "df3bfd9be72f8588b94ddcac8112503f" [4]=> string(32) "df3bfd9be72f8588b94ddcac8112503f" [5]=> string(54) "write df3bfd9be72f8588b94ddcac8112503f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read df3bfd9be72f8588b94ddcac8112503f" [9]=> string(40) "destroy df3bfd9be72f8588b94ddcac8112503f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.36
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c47894e5ae373f431e5a83c48e7e6d62" [3]=> string(32) "c47894e5ae373f431e5a83c48e7e6d62" [4]=> string(32) "c47894e5ae373f431e5a83c48e7e6d62" [5]=> string(54) "write c47894e5ae373f431e5a83c48e7e6d62: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c47894e5ae373f431e5a83c48e7e6d62" [9]=> string(40) "destroy c47894e5ae373f431e5a83c48e7e6d62" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.35
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 98a49081a574b7c5f7d5fe047e80be5b" [3]=> string(32) "98a49081a574b7c5f7d5fe047e80be5b" [4]=> string(32) "98a49081a574b7c5f7d5fe047e80be5b" [5]=> string(54) "write 98a49081a574b7c5f7d5fe047e80be5b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 98a49081a574b7c5f7d5fe047e80be5b" [9]=> string(40) "destroy 98a49081a574b7c5f7d5fe047e80be5b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.34
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 54c8230a117c0bd02b634a8805f3a804" [3]=> string(32) "54c8230a117c0bd02b634a8805f3a804" [4]=> string(32) "54c8230a117c0bd02b634a8805f3a804" [5]=> string(54) "write 54c8230a117c0bd02b634a8805f3a804: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 54c8230a117c0bd02b634a8805f3a804" [9]=> string(40) "destroy 54c8230a117c0bd02b634a8805f3a804" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.32
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 20c8cf5379440650437a50431470a9d1" [3]=> string(32) "20c8cf5379440650437a50431470a9d1" [4]=> string(32) "20c8cf5379440650437a50431470a9d1" [5]=> string(54) "write 20c8cf5379440650437a50431470a9d1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 20c8cf5379440650437a50431470a9d1" [9]=> string(40) "destroy 20c8cf5379440650437a50431470a9d1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.31
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4cad2b8be746f99edc6d904308e2368e" [3]=> string(32) "4cad2b8be746f99edc6d904308e2368e" [4]=> string(32) "4cad2b8be746f99edc6d904308e2368e" [5]=> string(54) "write 4cad2b8be746f99edc6d904308e2368e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4cad2b8be746f99edc6d904308e2368e" [9]=> string(40) "destroy 4cad2b8be746f99edc6d904308e2368e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.30
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d702815e1da15ac7a858af5e7cf917c3" [3]=> string(32) "d702815e1da15ac7a858af5e7cf917c3" [4]=> string(32) "d702815e1da15ac7a858af5e7cf917c3" [5]=> string(54) "write d702815e1da15ac7a858af5e7cf917c3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d702815e1da15ac7a858af5e7cf917c3" [9]=> string(40) "destroy d702815e1da15ac7a858af5e7cf917c3" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.29
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f69b55b02e20be4e34d57c51b0dacaa0" [3]=> string(32) "f69b55b02e20be4e34d57c51b0dacaa0" [4]=> string(32) "f69b55b02e20be4e34d57c51b0dacaa0" [5]=> string(54) "write f69b55b02e20be4e34d57c51b0dacaa0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f69b55b02e20be4e34d57c51b0dacaa0" [9]=> string(40) "destroy f69b55b02e20be4e34d57c51b0dacaa0" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.28
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 02645b092b5f8328304d06de8fccb0c6" [3]=> string(32) "02645b092b5f8328304d06de8fccb0c6" [4]=> string(32) "02645b092b5f8328304d06de8fccb0c6" [5]=> string(54) "write 02645b092b5f8328304d06de8fccb0c6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 02645b092b5f8328304d06de8fccb0c6" [9]=> string(40) "destroy 02645b092b5f8328304d06de8fccb0c6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.27
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 195659449b9940326c188b1dcc054230" [3]=> string(32) "195659449b9940326c188b1dcc054230" [4]=> string(32) "195659449b9940326c188b1dcc054230" [5]=> string(54) "write 195659449b9940326c188b1dcc054230: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 195659449b9940326c188b1dcc054230" [9]=> string(40) "destroy 195659449b9940326c188b1dcc054230" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.26
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(18) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8ca60bbe0fcfc84b801183219af98b03" [3]=> string(32) "8ca60bbe0fcfc84b801183219af98b03" [4]=> string(32) "8ca60bbe0fcfc84b801183219af98b03" [5]=> string(54) "write 8ca60bbe0fcfc84b801183219af98b03: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 8ca60bbe0fcfc84b801183219af98b03" [9]=> string(40) "destroy 8ca60bbe0fcfc84b801183219af98b03" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(7) "gc 1440" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.25
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7944eadadb77d188e8925e07985a00a7" [3]=> string(32) "7944eadadb77d188e8925e07985a00a7" [4]=> string(32) "7944eadadb77d188e8925e07985a00a7" [5]=> string(54) "write 7944eadadb77d188e8925e07985a00a7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7944eadadb77d188e8925e07985a00a7" [9]=> string(40) "destroy 7944eadadb77d188e8925e07985a00a7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.24
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 02f0e76f7ed2de6976ee7b4c1c345e9a" [3]=> string(32) "02f0e76f7ed2de6976ee7b4c1c345e9a" [4]=> string(32) "02f0e76f7ed2de6976ee7b4c1c345e9a" [5]=> string(54) "write 02f0e76f7ed2de6976ee7b4c1c345e9a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 02f0e76f7ed2de6976ee7b4c1c345e9a" [9]=> string(40) "destroy 02f0e76f7ed2de6976ee7b4c1c345e9a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.23
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c93122123aca756b3dd143cf96a749d9" [3]=> string(32) "c93122123aca756b3dd143cf96a749d9" [4]=> string(32) "c93122123aca756b3dd143cf96a749d9" [5]=> string(54) "write c93122123aca756b3dd143cf96a749d9: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c93122123aca756b3dd143cf96a749d9" [9]=> string(40) "destroy c93122123aca756b3dd143cf96a749d9" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.22
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b34946939e5231dc43f0c7981fd742e6" [3]=> string(32) "b34946939e5231dc43f0c7981fd742e6" [4]=> string(32) "b34946939e5231dc43f0c7981fd742e6" [5]=> string(54) "write b34946939e5231dc43f0c7981fd742e6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b34946939e5231dc43f0c7981fd742e6" [9]=> string(40) "destroy b34946939e5231dc43f0c7981fd742e6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.21
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(18) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 52e47552db434624ddc7b84f606de1e8" [3]=> string(32) "52e47552db434624ddc7b84f606de1e8" [4]=> string(32) "52e47552db434624ddc7b84f606de1e8" [5]=> string(54) "write 52e47552db434624ddc7b84f606de1e8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 52e47552db434624ddc7b84f606de1e8" [9]=> string(7) "gc 1440" [10]=> string(40) "destroy 52e47552db434624ddc7b84f606de1e8" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(0) "" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.20
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 82c860b12f264ada5bdcfeceb31f7ee8" [3]=> string(32) "82c860b12f264ada5bdcfeceb31f7ee8" [4]=> string(32) "82c860b12f264ada5bdcfeceb31f7ee8" [5]=> string(54) "write 82c860b12f264ada5bdcfeceb31f7ee8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 82c860b12f264ada5bdcfeceb31f7ee8" [9]=> string(40) "destroy 82c860b12f264ada5bdcfeceb31f7ee8" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.19
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a8841a279a0a15c57600ab86bd97aeb3" [3]=> string(32) "a8841a279a0a15c57600ab86bd97aeb3" [4]=> string(32) "a8841a279a0a15c57600ab86bd97aeb3" [5]=> string(54) "write a8841a279a0a15c57600ab86bd97aeb3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a8841a279a0a15c57600ab86bd97aeb3" [9]=> string(40) "destroy a8841a279a0a15c57600ab86bd97aeb3" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.18
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cc729f61220173a21752f764e1627ee6" [3]=> string(32) "cc729f61220173a21752f764e1627ee6" [4]=> string(32) "cc729f61220173a21752f764e1627ee6" [5]=> string(54) "write cc729f61220173a21752f764e1627ee6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read cc729f61220173a21752f764e1627ee6" [9]=> string(40) "destroy cc729f61220173a21752f764e1627ee6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.17
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 80a027b0aca2cc05ecfd443d4aab7cde" [3]=> string(32) "80a027b0aca2cc05ecfd443d4aab7cde" [4]=> string(32) "80a027b0aca2cc05ecfd443d4aab7cde" [5]=> string(54) "write 80a027b0aca2cc05ecfd443d4aab7cde: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 80a027b0aca2cc05ecfd443d4aab7cde" [9]=> string(40) "destroy 80a027b0aca2cc05ecfd443d4aab7cde" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.16
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d77a514ccacd65bc9f6af893d2eef226" [3]=> string(32) "d77a514ccacd65bc9f6af893d2eef226" [4]=> string(32) "d77a514ccacd65bc9f6af893d2eef226" [5]=> string(54) "write d77a514ccacd65bc9f6af893d2eef226: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d77a514ccacd65bc9f6af893d2eef226" [9]=> string(40) "destroy d77a514ccacd65bc9f6af893d2eef226" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.15
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5445c16ee6c512bb815b84e57e7f163a" [3]=> string(32) "5445c16ee6c512bb815b84e57e7f163a" [4]=> string(32) "5445c16ee6c512bb815b84e57e7f163a" [5]=> string(54) "write 5445c16ee6c512bb815b84e57e7f163a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5445c16ee6c512bb815b84e57e7f163a" [9]=> string(40) "destroy 5445c16ee6c512bb815b84e57e7f163a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.14
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4adacba6a27d190fe049aea6b5555407" [3]=> string(32) "4adacba6a27d190fe049aea6b5555407" [4]=> string(32) "4adacba6a27d190fe049aea6b5555407" [5]=> string(54) "write 4adacba6a27d190fe049aea6b5555407: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4adacba6a27d190fe049aea6b5555407" [9]=> string(40) "destroy 4adacba6a27d190fe049aea6b5555407" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.13
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 329cb4f5d070ad277f23fc70a3432164" [3]=> string(32) "329cb4f5d070ad277f23fc70a3432164" [4]=> string(32) "329cb4f5d070ad277f23fc70a3432164" [5]=> string(54) "write 329cb4f5d070ad277f23fc70a3432164: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 329cb4f5d070ad277f23fc70a3432164" [9]=> string(40) "destroy 329cb4f5d070ad277f23fc70a3432164" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.12
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2f537cd9b915d267812fac6252cb58f6" [3]=> string(32) "2f537cd9b915d267812fac6252cb58f6" [4]=> string(32) "2f537cd9b915d267812fac6252cb58f6" [5]=> string(54) "write 2f537cd9b915d267812fac6252cb58f6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 2f537cd9b915d267812fac6252cb58f6" [9]=> string(40) "destroy 2f537cd9b915d267812fac6252cb58f6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.11
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9643fbeb43353bbcd745a9c671de6535" [3]=> string(32) "9643fbeb43353bbcd745a9c671de6535" [4]=> string(32) "9643fbeb43353bbcd745a9c671de6535" [5]=> string(54) "write 9643fbeb43353bbcd745a9c671de6535: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9643fbeb43353bbcd745a9c671de6535" [9]=> string(40) "destroy 9643fbeb43353bbcd745a9c671de6535" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.10
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 02e46124564d5878d2a9e46558e1bb51" [3]=> string(32) "02e46124564d5878d2a9e46558e1bb51" [4]=> string(32) "02e46124564d5878d2a9e46558e1bb51" [5]=> string(54) "write 02e46124564d5878d2a9e46558e1bb51: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 02e46124564d5878d2a9e46558e1bb51" [9]=> string(40) "destroy 02e46124564d5878d2a9e46558e1bb51" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.9
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 60789d5bb33a459d372537d4ff2cdbef" [3]=> string(32) "60789d5bb33a459d372537d4ff2cdbef" [4]=> string(32) "60789d5bb33a459d372537d4ff2cdbef" [5]=> string(54) "write 60789d5bb33a459d372537d4ff2cdbef: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 60789d5bb33a459d372537d4ff2cdbef" [9]=> string(40) "destroy 60789d5bb33a459d372537d4ff2cdbef" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.8
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b76a6bd9c5ec1c52196e5cc28986efa6" [3]=> string(32) "b76a6bd9c5ec1c52196e5cc28986efa6" [4]=> string(32) "b76a6bd9c5ec1c52196e5cc28986efa6" [5]=> string(54) "write b76a6bd9c5ec1c52196e5cc28986efa6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b76a6bd9c5ec1c52196e5cc28986efa6" [9]=> string(40) "destroy b76a6bd9c5ec1c52196e5cc28986efa6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.7
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a9e88ba07bda4a4d845ced9bb03db51c" [3]=> string(32) "a9e88ba07bda4a4d845ced9bb03db51c" [4]=> string(32) "a9e88ba07bda4a4d845ced9bb03db51c" [5]=> string(54) "write a9e88ba07bda4a4d845ced9bb03db51c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a9e88ba07bda4a4d845ced9bb03db51c" [9]=> string(40) "destroy a9e88ba07bda4a4d845ced9bb03db51c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.6
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ab4415e17826292dbc4fb1530e2096fa" [3]=> string(32) "ab4415e17826292dbc4fb1530e2096fa" [4]=> string(32) "ab4415e17826292dbc4fb1530e2096fa" [5]=> string(54) "write ab4415e17826292dbc4fb1530e2096fa: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ab4415e17826292dbc4fb1530e2096fa" [9]=> string(40) "destroy ab4415e17826292dbc4fb1530e2096fa" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.5
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4970f1a5dbe9b2f9ec5565308e6a3624" [3]=> string(32) "4970f1a5dbe9b2f9ec5565308e6a3624" [4]=> string(32) "4970f1a5dbe9b2f9ec5565308e6a3624" [5]=> string(54) "write 4970f1a5dbe9b2f9ec5565308e6a3624: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4970f1a5dbe9b2f9ec5565308e6a3624" [9]=> string(40) "destroy 4970f1a5dbe9b2f9ec5565308e6a3624" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.4
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 363d0c150454a105ad399a4df9f4bdb2" [3]=> string(32) "363d0c150454a105ad399a4df9f4bdb2" [4]=> string(32) "363d0c150454a105ad399a4df9f4bdb2" [5]=> string(54) "write 363d0c150454a105ad399a4df9f4bdb2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 363d0c150454a105ad399a4df9f4bdb2" [9]=> string(40) "destroy 363d0c150454a105ad399a4df9f4bdb2" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.3
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9964bd99f8f2ba81190972622049c9d7" [3]=> string(32) "9964bd99f8f2ba81190972622049c9d7" [4]=> string(32) "9964bd99f8f2ba81190972622049c9d7" [5]=> string(54) "write 9964bd99f8f2ba81190972622049c9d7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9964bd99f8f2ba81190972622049c9d7" [9]=> string(40) "destroy 9964bd99f8f2ba81190972622049c9d7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.2
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cf8cb2e11544afc075b66ce3dcaecda1" [3]=> string(32) "cf8cb2e11544afc075b66ce3dcaecda1" [4]=> string(32) "cf8cb2e11544afc075b66ce3dcaecda1" [5]=> string(54) "write cf8cb2e11544afc075b66ce3dcaecda1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read cf8cb2e11544afc075b66ce3dcaecda1" [9]=> string(40) "destroy cf8cb2e11544afc075b66ce3dcaecda1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.1
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(17) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 47b70880f0debefbe0cc090ff02d14c4" [3]=> string(32) "47b70880f0debefbe0cc090ff02d14c4" [4]=> string(32) "47b70880f0debefbe0cc090ff02d14c4" [5]=> string(54) "write 47b70880f0debefbe0cc090ff02d14c4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 47b70880f0debefbe0cc090ff02d14c4" [9]=> string(40) "destroy 47b70880f0debefbe0cc090ff02d14c4" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.0
Notice: Undefined variable: _SESSION in /in/iiYfg on line 47 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 49 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/iiYfg on line 54 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/iiYfg:47) in /in/iiYfg on line 66 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/iiYfg:47) in /in/iiYfg on line 66 array(18) { [0]=> string(4) "NULL" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f2900c2eee9143576e1032d4113f91c2" [3]=> string(32) "f2900c2eee9143576e1032d4113f91c2" [4]=> string(32) "f2900c2eee9143576e1032d4113f91c2" [5]=> string(54) "write f2900c2eee9143576e1032d4113f91c2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f2900c2eee9143576e1032d4113f91c2" [9]=> string(7) "gc 1440" [10]=> string(40) "destroy f2900c2eee9143576e1032d4113f91c2" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(0) "" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/iiYfg on line 5
Process exited with code 255.
Output for 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/iiYfg on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/iiYfg on line 4
Process exited with code 255.
Output for 5.0.0 - 5.0.4
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/iiYfg on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/iiYfg on line 4
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting '{' in /in/iiYfg on line 4
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
Parse error: parse error, unexpected T_STRING, expecting '{' in /in/iiYfg on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/iiYfg on line 4
Process exited with code 255.

preferences:
255.46 ms | 401 KiB | 326 Q