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 ' . var_export($maxlifetime, true); } public function __destruct() { var_dump($this->messages); } } $handler = new MySessionHandler(); session_set_save_handler($handler, true); $handler->messages[] = 'isset($_SESSION): ' . var_export(isset($_SESSION), true); $_SESSION['before'] = 'start'; session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = 'current session_id: ' . session_id(); session_regenerate_id(true); $handler->messages[] = 'current session_id: ' . session_id(); session_write_close(); var_dump(constant('SID')); var_dump(session_id()); session_start(); session_destroy(); $handler->messages[] = var_export($_SESSION, true); $handler->messages[] = 'current session_id: ' . var_export(session_id(), true); session_id('explicit-session-id'); session_start(); $_SESSION['john'] = 'doe';
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
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/nWKJG 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/nWKJG 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/nWKJG 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/nWKJG 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/nWKJG 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/nWKJG on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/nWKJG on line 45 Warning: session_start(): Session cannot be started after headers have already been sent in /in/nWKJG on line 50 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/nWKJG on line 55 Fatal error: Uncaught Error: Undefined constant "SID" in /in/nWKJG:59 Stack trace: #0 /in/nWKJG(59): constant('SID') #1 {main} thrown in /in/nWKJG on line 59 array(3) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(20) "current session_id: " [2]=> string(20) "current session_id: " }
Process exited with code 255.
Output for 8.0.0 - 8.0.30
Fatal error: Uncaught TypeError: Session callback must have a return value of type bool, null returned in /in/nWKJG:50 Stack trace: #0 /in/nWKJG(50): session_start() #1 {main} thrown in /in/nWKJG on line 50 array(2) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" }
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: session_start(): Session callback expects true/false return value in /in/nWKJG on line 50 Warning: session_start(): Session callback expects true/false return value in /in/nWKJG on line 50 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/nWKJG on line 50 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/nWKJG on line 55 Warning: constant(): Couldn't find constant SID in /in/nWKJG on line 59 NULL string(0) "" Warning: session_start(): Cannot start session when headers already sent in /in/nWKJG on line 62 Warning: session_destroy(): Trying to destroy uninitialized session in /in/nWKJG on line 63 Warning: session_id(): Cannot change session id when headers already sent in /in/nWKJG on line 68 Warning: session_start(): Cannot start session when headers already sent in /in/nWKJG on line 69 array(7) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(5) "close" [3]=> string(20) "current session_id: " [4]=> string(20) "current session_id: " [5]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [6]=> string(22) "current session_id: ''" }
Output for 7.1.0 - 7.1.33
Warning: session_start(): Session callback expects true/false return value in /in/nWKJG on line 50 Warning: session_start(): Session callback expects true/false return value in /in/nWKJG on line 50 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/nWKJG on line 50
Process exited with code 255.
Output for 7.0.0 - 7.0.33
Warning: session_start(): Session callback expects true/false return value in /in/nWKJG on line 50 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/nWKJG on line 50 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.40
string(42) "PHPSESSID=9cb571293f83ff5c1b1d33012191df73" string(32) "9cb571293f83ff5c1b1d33012191df73" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 19c909defa592db841fc799587ea150d" [3]=> string(52) "current session_id: 19c909defa592db841fc799587ea150d" [4]=> string(40) "destroy 19c909defa592db841fc799587ea150d" [5]=> string(52) "current session_id: 9cb571293f83ff5c1b1d33012191df73" [6]=> string(54) "write 9cb571293f83ff5c1b1d33012191df73: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9cb571293f83ff5c1b1d33012191df73" [10]=> string(40) "destroy 9cb571293f83ff5c1b1d33012191df73" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.39
string(42) "PHPSESSID=e0b294d92dc2fec0dea178a67aba1e2e" string(32) "e0b294d92dc2fec0dea178a67aba1e2e" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 77153b534119bd2ce40d015cef595852" [3]=> string(52) "current session_id: 77153b534119bd2ce40d015cef595852" [4]=> string(40) "destroy 77153b534119bd2ce40d015cef595852" [5]=> string(52) "current session_id: e0b294d92dc2fec0dea178a67aba1e2e" [6]=> string(54) "write e0b294d92dc2fec0dea178a67aba1e2e: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e0b294d92dc2fec0dea178a67aba1e2e" [10]=> string(40) "destroy e0b294d92dc2fec0dea178a67aba1e2e" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.38
string(42) "PHPSESSID=b6c169f6c7a991e4e54660f07363feae" string(32) "b6c169f6c7a991e4e54660f07363feae" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 28c2e6798e2f5ab0e632b71d153208fb" [3]=> string(52) "current session_id: 28c2e6798e2f5ab0e632b71d153208fb" [4]=> string(40) "destroy 28c2e6798e2f5ab0e632b71d153208fb" [5]=> string(52) "current session_id: b6c169f6c7a991e4e54660f07363feae" [6]=> string(54) "write b6c169f6c7a991e4e54660f07363feae: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read b6c169f6c7a991e4e54660f07363feae" [10]=> string(40) "destroy b6c169f6c7a991e4e54660f07363feae" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.37
string(42) "PHPSESSID=2343aa52926e7505bb3e4f4d239c1da1" string(32) "2343aa52926e7505bb3e4f4d239c1da1" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4f6755ef828710f7e6aed649f349eae7" [3]=> string(52) "current session_id: 4f6755ef828710f7e6aed649f349eae7" [4]=> string(40) "destroy 4f6755ef828710f7e6aed649f349eae7" [5]=> string(52) "current session_id: 2343aa52926e7505bb3e4f4d239c1da1" [6]=> string(54) "write 2343aa52926e7505bb3e4f4d239c1da1: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2343aa52926e7505bb3e4f4d239c1da1" [10]=> string(40) "destroy 2343aa52926e7505bb3e4f4d239c1da1" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.36
string(42) "PHPSESSID=bd0adc4353cbb2d70453b5ad643375d6" string(32) "bd0adc4353cbb2d70453b5ad643375d6" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 67c40990b5ad28eceed9d6853cd2699b" [3]=> string(52) "current session_id: 67c40990b5ad28eceed9d6853cd2699b" [4]=> string(40) "destroy 67c40990b5ad28eceed9d6853cd2699b" [5]=> string(52) "current session_id: bd0adc4353cbb2d70453b5ad643375d6" [6]=> string(54) "write bd0adc4353cbb2d70453b5ad643375d6: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read bd0adc4353cbb2d70453b5ad643375d6" [10]=> string(40) "destroy bd0adc4353cbb2d70453b5ad643375d6" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.35
string(42) "PHPSESSID=316aa5088c91c4388de8ad4d262199d6" string(32) "316aa5088c91c4388de8ad4d262199d6" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4c8c74af4786d2bfa14670d40d26e0f9" [3]=> string(52) "current session_id: 4c8c74af4786d2bfa14670d40d26e0f9" [4]=> string(40) "destroy 4c8c74af4786d2bfa14670d40d26e0f9" [5]=> string(52) "current session_id: 316aa5088c91c4388de8ad4d262199d6" [6]=> string(54) "write 316aa5088c91c4388de8ad4d262199d6: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 316aa5088c91c4388de8ad4d262199d6" [10]=> string(40) "destroy 316aa5088c91c4388de8ad4d262199d6" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.34
string(42) "PHPSESSID=a23e39e50f4b3eb3da2299c0c1ddb45d" string(32) "a23e39e50f4b3eb3da2299c0c1ddb45d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9f78ab2e03ffeb746d546e57dc4659c1" [3]=> string(52) "current session_id: 9f78ab2e03ffeb746d546e57dc4659c1" [4]=> string(40) "destroy 9f78ab2e03ffeb746d546e57dc4659c1" [5]=> string(52) "current session_id: a23e39e50f4b3eb3da2299c0c1ddb45d" [6]=> string(54) "write a23e39e50f4b3eb3da2299c0c1ddb45d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a23e39e50f4b3eb3da2299c0c1ddb45d" [10]=> string(40) "destroy a23e39e50f4b3eb3da2299c0c1ddb45d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.33
string(42) "PHPSESSID=53344656f3b9d6af808c00fb427e6721" string(32) "53344656f3b9d6af808c00fb427e6721" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 661dea9220f383e5ffb508297d3c0a06" [3]=> string(52) "current session_id: 661dea9220f383e5ffb508297d3c0a06" [4]=> string(40) "destroy 661dea9220f383e5ffb508297d3c0a06" [5]=> string(52) "current session_id: 53344656f3b9d6af808c00fb427e6721" [6]=> string(54) "write 53344656f3b9d6af808c00fb427e6721: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 53344656f3b9d6af808c00fb427e6721" [10]=> string(40) "destroy 53344656f3b9d6af808c00fb427e6721" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.32
string(42) "PHPSESSID=a4e98419fed17e20079e15956f3c44c4" string(32) "a4e98419fed17e20079e15956f3c44c4" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bfc0f676c72c2a0557751161980cf393" [3]=> string(52) "current session_id: bfc0f676c72c2a0557751161980cf393" [4]=> string(40) "destroy bfc0f676c72c2a0557751161980cf393" [5]=> string(52) "current session_id: a4e98419fed17e20079e15956f3c44c4" [6]=> string(54) "write a4e98419fed17e20079e15956f3c44c4: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a4e98419fed17e20079e15956f3c44c4" [10]=> string(40) "destroy a4e98419fed17e20079e15956f3c44c4" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.31
string(42) "PHPSESSID=a877ea0555bc93da5f71f764fc520c48" string(32) "a877ea0555bc93da5f71f764fc520c48" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 79bc9a08081c39af57ec67a6703d8afc" [3]=> string(52) "current session_id: 79bc9a08081c39af57ec67a6703d8afc" [4]=> string(40) "destroy 79bc9a08081c39af57ec67a6703d8afc" [5]=> string(52) "current session_id: a877ea0555bc93da5f71f764fc520c48" [6]=> string(54) "write a877ea0555bc93da5f71f764fc520c48: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a877ea0555bc93da5f71f764fc520c48" [10]=> string(40) "destroy a877ea0555bc93da5f71f764fc520c48" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.30
string(42) "PHPSESSID=a6b3a99ad2c5b27a940febd0884f6cbb" string(32) "a6b3a99ad2c5b27a940febd0884f6cbb" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8fb833262ae47c002e77b8d9107d7e03" [3]=> string(52) "current session_id: 8fb833262ae47c002e77b8d9107d7e03" [4]=> string(40) "destroy 8fb833262ae47c002e77b8d9107d7e03" [5]=> string(52) "current session_id: a6b3a99ad2c5b27a940febd0884f6cbb" [6]=> string(54) "write a6b3a99ad2c5b27a940febd0884f6cbb: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a6b3a99ad2c5b27a940febd0884f6cbb" [10]=> string(40) "destroy a6b3a99ad2c5b27a940febd0884f6cbb" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.29
string(42) "PHPSESSID=d29fbb7b02cb18308aab16b0b29a8f36" string(32) "d29fbb7b02cb18308aab16b0b29a8f36" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d898bab6243183d634064862742e3b5c" [3]=> string(52) "current session_id: d898bab6243183d634064862742e3b5c" [4]=> string(40) "destroy d898bab6243183d634064862742e3b5c" [5]=> string(52) "current session_id: d29fbb7b02cb18308aab16b0b29a8f36" [6]=> string(54) "write d29fbb7b02cb18308aab16b0b29a8f36: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d29fbb7b02cb18308aab16b0b29a8f36" [10]=> string(40) "destroy d29fbb7b02cb18308aab16b0b29a8f36" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.28
string(42) "PHPSESSID=64f07962e9461e90494c3cafa25e058e" string(32) "64f07962e9461e90494c3cafa25e058e" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f3fa19f5fdee8050981c560a46771785" [3]=> string(52) "current session_id: f3fa19f5fdee8050981c560a46771785" [4]=> string(40) "destroy f3fa19f5fdee8050981c560a46771785" [5]=> string(52) "current session_id: 64f07962e9461e90494c3cafa25e058e" [6]=> string(54) "write 64f07962e9461e90494c3cafa25e058e: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 64f07962e9461e90494c3cafa25e058e" [10]=> string(40) "destroy 64f07962e9461e90494c3cafa25e058e" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.27
string(42) "PHPSESSID=94ac43bc7da7958ac2d84baf17301ae7" string(32) "94ac43bc7da7958ac2d84baf17301ae7" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6e2fdf98f97e2458ace9c91cdbfed675" [3]=> string(52) "current session_id: 6e2fdf98f97e2458ace9c91cdbfed675" [4]=> string(40) "destroy 6e2fdf98f97e2458ace9c91cdbfed675" [5]=> string(52) "current session_id: 94ac43bc7da7958ac2d84baf17301ae7" [6]=> string(54) "write 94ac43bc7da7958ac2d84baf17301ae7: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 94ac43bc7da7958ac2d84baf17301ae7" [10]=> string(40) "destroy 94ac43bc7da7958ac2d84baf17301ae7" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.26
string(42) "PHPSESSID=70ab989463ed29075fa7bf19dae87671" string(32) "70ab989463ed29075fa7bf19dae87671" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a882ec2e93bd68a8ee72313adf2fe517" [3]=> string(52) "current session_id: a882ec2e93bd68a8ee72313adf2fe517" [4]=> string(40) "destroy a882ec2e93bd68a8ee72313adf2fe517" [5]=> string(52) "current session_id: 70ab989463ed29075fa7bf19dae87671" [6]=> string(54) "write 70ab989463ed29075fa7bf19dae87671: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 70ab989463ed29075fa7bf19dae87671" [10]=> string(40) "destroy 70ab989463ed29075fa7bf19dae87671" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.25
string(42) "PHPSESSID=8c9a8d330e72830f166665a701a87560" string(32) "8c9a8d330e72830f166665a701a87560" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e03bb3d1cf1e3ea3389615799d323f03" [3]=> string(52) "current session_id: e03bb3d1cf1e3ea3389615799d323f03" [4]=> string(40) "destroy e03bb3d1cf1e3ea3389615799d323f03" [5]=> string(52) "current session_id: 8c9a8d330e72830f166665a701a87560" [6]=> string(54) "write 8c9a8d330e72830f166665a701a87560: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8c9a8d330e72830f166665a701a87560" [10]=> string(40) "destroy 8c9a8d330e72830f166665a701a87560" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.24
string(42) "PHPSESSID=3c4bb13ac331fc9064cc7d55fa217fe3" string(32) "3c4bb13ac331fc9064cc7d55fa217fe3" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c9fa7e1f7e939adcb4883b01bedcde54" [3]=> string(52) "current session_id: c9fa7e1f7e939adcb4883b01bedcde54" [4]=> string(40) "destroy c9fa7e1f7e939adcb4883b01bedcde54" [5]=> string(52) "current session_id: 3c4bb13ac331fc9064cc7d55fa217fe3" [6]=> string(54) "write 3c4bb13ac331fc9064cc7d55fa217fe3: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3c4bb13ac331fc9064cc7d55fa217fe3" [10]=> string(40) "destroy 3c4bb13ac331fc9064cc7d55fa217fe3" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.23
string(42) "PHPSESSID=d9c95bd6173ae77020a06d3c1e5e002a" string(32) "d9c95bd6173ae77020a06d3c1e5e002a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7f8bec5e7e4145364f705a362114c824" [3]=> string(52) "current session_id: 7f8bec5e7e4145364f705a362114c824" [4]=> string(40) "destroy 7f8bec5e7e4145364f705a362114c824" [5]=> string(52) "current session_id: d9c95bd6173ae77020a06d3c1e5e002a" [6]=> string(54) "write d9c95bd6173ae77020a06d3c1e5e002a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d9c95bd6173ae77020a06d3c1e5e002a" [10]=> string(40) "destroy d9c95bd6173ae77020a06d3c1e5e002a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.22
string(42) "PHPSESSID=1a288068ace794e20d9a5838d9cce57b" string(32) "1a288068ace794e20d9a5838d9cce57b" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 173f4666972e0896edb5c682ce657af4" [3]=> string(52) "current session_id: 173f4666972e0896edb5c682ce657af4" [4]=> string(40) "destroy 173f4666972e0896edb5c682ce657af4" [5]=> string(52) "current session_id: 1a288068ace794e20d9a5838d9cce57b" [6]=> string(54) "write 1a288068ace794e20d9a5838d9cce57b: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1a288068ace794e20d9a5838d9cce57b" [10]=> string(40) "destroy 1a288068ace794e20d9a5838d9cce57b" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.21
string(42) "PHPSESSID=d199c1e31ef246f269c5cb42a79275e1" string(32) "d199c1e31ef246f269c5cb42a79275e1" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 04859b246d502c18d7e8d3ce92a4ec9e" [3]=> string(52) "current session_id: 04859b246d502c18d7e8d3ce92a4ec9e" [4]=> string(40) "destroy 04859b246d502c18d7e8d3ce92a4ec9e" [5]=> string(52) "current session_id: d199c1e31ef246f269c5cb42a79275e1" [6]=> string(54) "write d199c1e31ef246f269c5cb42a79275e1: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d199c1e31ef246f269c5cb42a79275e1" [10]=> string(40) "destroy d199c1e31ef246f269c5cb42a79275e1" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.20
string(42) "PHPSESSID=1c904d23b88e36488c72b395dd5a2b76" string(32) "1c904d23b88e36488c72b395dd5a2b76" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a6b5364106558f30e0e8f4e35e71cf5d" [3]=> string(52) "current session_id: a6b5364106558f30e0e8f4e35e71cf5d" [4]=> string(40) "destroy a6b5364106558f30e0e8f4e35e71cf5d" [5]=> string(52) "current session_id: 1c904d23b88e36488c72b395dd5a2b76" [6]=> string(54) "write 1c904d23b88e36488c72b395dd5a2b76: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1c904d23b88e36488c72b395dd5a2b76" [10]=> string(40) "destroy 1c904d23b88e36488c72b395dd5a2b76" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.19
string(42) "PHPSESSID=85a453130b77eedf897ebb0910ecc5b0" string(32) "85a453130b77eedf897ebb0910ecc5b0" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read eb91046ea8d0952a132dc988707c2707" [3]=> string(52) "current session_id: eb91046ea8d0952a132dc988707c2707" [4]=> string(40) "destroy eb91046ea8d0952a132dc988707c2707" [5]=> string(52) "current session_id: 85a453130b77eedf897ebb0910ecc5b0" [6]=> string(54) "write 85a453130b77eedf897ebb0910ecc5b0: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 85a453130b77eedf897ebb0910ecc5b0" [10]=> string(40) "destroy 85a453130b77eedf897ebb0910ecc5b0" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.18
string(42) "PHPSESSID=75f22dc774318505228ab65a40658c95" string(32) "75f22dc774318505228ab65a40658c95" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 51ce87c4fe0c4520a39f85aee167a6e7" [3]=> string(52) "current session_id: 51ce87c4fe0c4520a39f85aee167a6e7" [4]=> string(40) "destroy 51ce87c4fe0c4520a39f85aee167a6e7" [5]=> string(52) "current session_id: 75f22dc774318505228ab65a40658c95" [6]=> string(54) "write 75f22dc774318505228ab65a40658c95: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 75f22dc774318505228ab65a40658c95" [10]=> string(40) "destroy 75f22dc774318505228ab65a40658c95" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.17
string(42) "PHPSESSID=b9502e49e9a7404220209c2f789b2907" string(32) "b9502e49e9a7404220209c2f789b2907" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5477fe75eee5c30ca8d677c2892c7e4a" [3]=> string(52) "current session_id: 5477fe75eee5c30ca8d677c2892c7e4a" [4]=> string(40) "destroy 5477fe75eee5c30ca8d677c2892c7e4a" [5]=> string(52) "current session_id: b9502e49e9a7404220209c2f789b2907" [6]=> string(54) "write b9502e49e9a7404220209c2f789b2907: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read b9502e49e9a7404220209c2f789b2907" [10]=> string(40) "destroy b9502e49e9a7404220209c2f789b2907" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.16
string(42) "PHPSESSID=228f00c4b64015670ff94baf8e6ffe7e" string(32) "228f00c4b64015670ff94baf8e6ffe7e" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2e9c0d3542e7b347dd47010b9ae56462" [3]=> string(52) "current session_id: 2e9c0d3542e7b347dd47010b9ae56462" [4]=> string(40) "destroy 2e9c0d3542e7b347dd47010b9ae56462" [5]=> string(52) "current session_id: 228f00c4b64015670ff94baf8e6ffe7e" [6]=> string(54) "write 228f00c4b64015670ff94baf8e6ffe7e: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 228f00c4b64015670ff94baf8e6ffe7e" [10]=> string(40) "destroy 228f00c4b64015670ff94baf8e6ffe7e" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.15
string(42) "PHPSESSID=e44c8cb97018b0370760bf347a2c6df2" string(32) "e44c8cb97018b0370760bf347a2c6df2" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e3dd1ca735c768746aa7049ff8d18564" [3]=> string(52) "current session_id: e3dd1ca735c768746aa7049ff8d18564" [4]=> string(40) "destroy e3dd1ca735c768746aa7049ff8d18564" [5]=> string(52) "current session_id: e44c8cb97018b0370760bf347a2c6df2" [6]=> string(54) "write e44c8cb97018b0370760bf347a2c6df2: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e44c8cb97018b0370760bf347a2c6df2" [10]=> string(40) "destroy e44c8cb97018b0370760bf347a2c6df2" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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
string(42) "PHPSESSID=e29789dd4045eb93edc6428b416fe872" string(32) "e29789dd4045eb93edc6428b416fe872" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 13be33f433bc0fb11a4ddfa22fcb0ad2" [3]=> string(52) "current session_id: 13be33f433bc0fb11a4ddfa22fcb0ad2" [4]=> string(40) "destroy 13be33f433bc0fb11a4ddfa22fcb0ad2" [5]=> string(52) "current session_id: e29789dd4045eb93edc6428b416fe872" [6]=> string(54) "write e29789dd4045eb93edc6428b416fe872: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e29789dd4045eb93edc6428b416fe872" [10]=> string(40) "destroy e29789dd4045eb93edc6428b416fe872" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.13
string(42) "PHPSESSID=765077e1bc42399546897c25d9d23eed" string(32) "765077e1bc42399546897c25d9d23eed" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d3ae6b1df47bc85ad781c8bac8d7f0d7" [3]=> string(52) "current session_id: d3ae6b1df47bc85ad781c8bac8d7f0d7" [4]=> string(40) "destroy d3ae6b1df47bc85ad781c8bac8d7f0d7" [5]=> string(52) "current session_id: 765077e1bc42399546897c25d9d23eed" [6]=> string(54) "write 765077e1bc42399546897c25d9d23eed: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 765077e1bc42399546897c25d9d23eed" [10]=> string(40) "destroy 765077e1bc42399546897c25d9d23eed" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.12
string(42) "PHPSESSID=333cd905dbea212ce8acc2dbaac4f661" string(32) "333cd905dbea212ce8acc2dbaac4f661" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read caff5585a36b4959469cab1263515d04" [3]=> string(52) "current session_id: caff5585a36b4959469cab1263515d04" [4]=> string(40) "destroy caff5585a36b4959469cab1263515d04" [5]=> string(52) "current session_id: 333cd905dbea212ce8acc2dbaac4f661" [6]=> string(54) "write 333cd905dbea212ce8acc2dbaac4f661: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 333cd905dbea212ce8acc2dbaac4f661" [10]=> string(40) "destroy 333cd905dbea212ce8acc2dbaac4f661" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.11
string(42) "PHPSESSID=e10f28f7ff01cc1e967f79c22351dc13" string(32) "e10f28f7ff01cc1e967f79c22351dc13" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 469baae61c716356b54e5b09c3f8b4c0" [3]=> string(52) "current session_id: 469baae61c716356b54e5b09c3f8b4c0" [4]=> string(40) "destroy 469baae61c716356b54e5b09c3f8b4c0" [5]=> string(52) "current session_id: e10f28f7ff01cc1e967f79c22351dc13" [6]=> string(54) "write e10f28f7ff01cc1e967f79c22351dc13: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e10f28f7ff01cc1e967f79c22351dc13" [10]=> string(40) "destroy e10f28f7ff01cc1e967f79c22351dc13" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.10
string(42) "PHPSESSID=4a9600d1c55b05333a52aa70a7f6de2a" string(32) "4a9600d1c55b05333a52aa70a7f6de2a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2d1e574fd9f63125f3c74beffac30794" [3]=> string(52) "current session_id: 2d1e574fd9f63125f3c74beffac30794" [4]=> string(40) "destroy 2d1e574fd9f63125f3c74beffac30794" [5]=> string(52) "current session_id: 4a9600d1c55b05333a52aa70a7f6de2a" [6]=> string(54) "write 4a9600d1c55b05333a52aa70a7f6de2a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4a9600d1c55b05333a52aa70a7f6de2a" [10]=> string(40) "destroy 4a9600d1c55b05333a52aa70a7f6de2a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.9
string(42) "PHPSESSID=8ec2477db44715efcabb21fa65be777b" string(32) "8ec2477db44715efcabb21fa65be777b" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1bc1acfa60ba5768af8d3a929260960b" [3]=> string(52) "current session_id: 1bc1acfa60ba5768af8d3a929260960b" [4]=> string(40) "destroy 1bc1acfa60ba5768af8d3a929260960b" [5]=> string(52) "current session_id: 8ec2477db44715efcabb21fa65be777b" [6]=> string(54) "write 8ec2477db44715efcabb21fa65be777b: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8ec2477db44715efcabb21fa65be777b" [10]=> string(40) "destroy 8ec2477db44715efcabb21fa65be777b" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.8
string(42) "PHPSESSID=4586b564d97e4638319132b3a6679920" string(32) "4586b564d97e4638319132b3a6679920" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 11f40ab18319e3d34239b348638ab7ca" [3]=> string(52) "current session_id: 11f40ab18319e3d34239b348638ab7ca" [4]=> string(40) "destroy 11f40ab18319e3d34239b348638ab7ca" [5]=> string(52) "current session_id: 4586b564d97e4638319132b3a6679920" [6]=> string(54) "write 4586b564d97e4638319132b3a6679920: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4586b564d97e4638319132b3a6679920" [10]=> string(40) "destroy 4586b564d97e4638319132b3a6679920" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.7
string(42) "PHPSESSID=10a799ca721e75e59e6419a4f8e2c68d" string(32) "10a799ca721e75e59e6419a4f8e2c68d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c240cc2b774705b87f936b78b6e3eacc" [3]=> string(52) "current session_id: c240cc2b774705b87f936b78b6e3eacc" [4]=> string(40) "destroy c240cc2b774705b87f936b78b6e3eacc" [5]=> string(52) "current session_id: 10a799ca721e75e59e6419a4f8e2c68d" [6]=> string(54) "write 10a799ca721e75e59e6419a4f8e2c68d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 10a799ca721e75e59e6419a4f8e2c68d" [10]=> string(40) "destroy 10a799ca721e75e59e6419a4f8e2c68d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.6
string(42) "PHPSESSID=e7c737b3d4def5b097244304b6d2bdda" string(32) "e7c737b3d4def5b097244304b6d2bdda" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7ae1fda003c00a3a9c7d15799e71f0a0" [3]=> string(52) "current session_id: 7ae1fda003c00a3a9c7d15799e71f0a0" [4]=> string(40) "destroy 7ae1fda003c00a3a9c7d15799e71f0a0" [5]=> string(52) "current session_id: e7c737b3d4def5b097244304b6d2bdda" [6]=> string(54) "write e7c737b3d4def5b097244304b6d2bdda: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e7c737b3d4def5b097244304b6d2bdda" [10]=> string(40) "destroy e7c737b3d4def5b097244304b6d2bdda" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5
string(42) "PHPSESSID=f6dc84560fa599840eb902f631b164df" string(32) "f6dc84560fa599840eb902f631b164df" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read aa10ed2a6b25a758218a0130a509e208" [3]=> string(52) "current session_id: aa10ed2a6b25a758218a0130a509e208" [4]=> string(40) "destroy aa10ed2a6b25a758218a0130a509e208" [5]=> string(52) "current session_id: f6dc84560fa599840eb902f631b164df" [6]=> string(54) "write f6dc84560fa599840eb902f631b164df: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f6dc84560fa599840eb902f631b164df" [10]=> string(40) "destroy f6dc84560fa599840eb902f631b164df" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.4
string(42) "PHPSESSID=3254579c5ef7ef4b0595e3c7478c2fc7" string(32) "3254579c5ef7ef4b0595e3c7478c2fc7" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b551de66bef77a0d419a683ad9e385ad" [3]=> string(52) "current session_id: b551de66bef77a0d419a683ad9e385ad" [4]=> string(40) "destroy b551de66bef77a0d419a683ad9e385ad" [5]=> string(52) "current session_id: 3254579c5ef7ef4b0595e3c7478c2fc7" [6]=> string(54) "write 3254579c5ef7ef4b0595e3c7478c2fc7: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3254579c5ef7ef4b0595e3c7478c2fc7" [10]=> string(40) "destroy 3254579c5ef7ef4b0595e3c7478c2fc7" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.3
string(42) "PHPSESSID=89813f49539e89b62717bd4ccbfc6842" string(32) "89813f49539e89b62717bd4ccbfc6842" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 85e8de4315a31c1524efedc7cddb5a60" [3]=> string(52) "current session_id: 85e8de4315a31c1524efedc7cddb5a60" [4]=> string(40) "destroy 85e8de4315a31c1524efedc7cddb5a60" [5]=> string(52) "current session_id: 89813f49539e89b62717bd4ccbfc6842" [6]=> string(54) "write 89813f49539e89b62717bd4ccbfc6842: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 89813f49539e89b62717bd4ccbfc6842" [10]=> string(40) "destroy 89813f49539e89b62717bd4ccbfc6842" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.2
string(42) "PHPSESSID=9a5880ff46ff619fce2cbc1ba1c0fde2" string(32) "9a5880ff46ff619fce2cbc1ba1c0fde2" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 810dd945dc16a59ee00ffb2a28ecd1b6" [3]=> string(52) "current session_id: 810dd945dc16a59ee00ffb2a28ecd1b6" [4]=> string(40) "destroy 810dd945dc16a59ee00ffb2a28ecd1b6" [5]=> string(52) "current session_id: 9a5880ff46ff619fce2cbc1ba1c0fde2" [6]=> string(54) "write 9a5880ff46ff619fce2cbc1ba1c0fde2: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9a5880ff46ff619fce2cbc1ba1c0fde2" [10]=> string(40) "destroy 9a5880ff46ff619fce2cbc1ba1c0fde2" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.1
string(42) "PHPSESSID=1621944ef4580323a2ec98f084743ad5" string(32) "1621944ef4580323a2ec98f084743ad5" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 61b4eb3f050473548bfe486b4e830696" [3]=> string(52) "current session_id: 61b4eb3f050473548bfe486b4e830696" [4]=> string(40) "destroy 61b4eb3f050473548bfe486b4e830696" [5]=> string(52) "current session_id: 1621944ef4580323a2ec98f084743ad5" [6]=> string(54) "write 1621944ef4580323a2ec98f084743ad5: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1621944ef4580323a2ec98f084743ad5" [10]=> string(40) "destroy 1621944ef4580323a2ec98f084743ad5" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.0
string(42) "PHPSESSID=c3e7d07f9e9511145931aaf12fd484dc" string(32) "c3e7d07f9e9511145931aaf12fd484dc" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fd5e7a925f17b9b374f194c337818be1" [3]=> string(52) "current session_id: fd5e7a925f17b9b374f194c337818be1" [4]=> string(40) "destroy fd5e7a925f17b9b374f194c337818be1" [5]=> string(52) "current session_id: c3e7d07f9e9511145931aaf12fd484dc" [6]=> string(54) "write c3e7d07f9e9511145931aaf12fd484dc: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read c3e7d07f9e9511145931aaf12fd484dc" [10]=> string(40) "destroy c3e7d07f9e9511145931aaf12fd484dc" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.38
string(42) "PHPSESSID=7c2ddedd4ebb9859315d84c1267f8b28" string(32) "7c2ddedd4ebb9859315d84c1267f8b28" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3d7ba174011d1ac848b508427c15e49a" [3]=> string(52) "current session_id: 3d7ba174011d1ac848b508427c15e49a" [4]=> string(40) "destroy 3d7ba174011d1ac848b508427c15e49a" [5]=> string(52) "current session_id: 7c2ddedd4ebb9859315d84c1267f8b28" [6]=> string(54) "write 7c2ddedd4ebb9859315d84c1267f8b28: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 7c2ddedd4ebb9859315d84c1267f8b28" [10]=> string(40) "destroy 7c2ddedd4ebb9859315d84c1267f8b28" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.37
string(42) "PHPSESSID=31b60b26afc8ba12f8213350280c1901" string(32) "31b60b26afc8ba12f8213350280c1901" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 19207d5878d0cd61772a2b5941250b52" [3]=> string(52) "current session_id: 19207d5878d0cd61772a2b5941250b52" [4]=> string(40) "destroy 19207d5878d0cd61772a2b5941250b52" [5]=> string(52) "current session_id: 31b60b26afc8ba12f8213350280c1901" [6]=> string(54) "write 31b60b26afc8ba12f8213350280c1901: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 31b60b26afc8ba12f8213350280c1901" [10]=> string(40) "destroy 31b60b26afc8ba12f8213350280c1901" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.36
string(42) "PHPSESSID=9255d009d709886ed420c59ec1fc7098" string(32) "9255d009d709886ed420c59ec1fc7098" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 62ddba9e01da2ec9c685c76f6f1ef2b5" [3]=> string(52) "current session_id: 62ddba9e01da2ec9c685c76f6f1ef2b5" [4]=> string(40) "destroy 62ddba9e01da2ec9c685c76f6f1ef2b5" [5]=> string(52) "current session_id: 9255d009d709886ed420c59ec1fc7098" [6]=> string(54) "write 9255d009d709886ed420c59ec1fc7098: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9255d009d709886ed420c59ec1fc7098" [10]=> string(40) "destroy 9255d009d709886ed420c59ec1fc7098" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.35
string(42) "PHPSESSID=3f11a1b8f7d80bd948c74446f66510de" string(32) "3f11a1b8f7d80bd948c74446f66510de" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3807564127b47242f0a9c0364522d3f3" [3]=> string(52) "current session_id: 3807564127b47242f0a9c0364522d3f3" [4]=> string(40) "destroy 3807564127b47242f0a9c0364522d3f3" [5]=> string(52) "current session_id: 3f11a1b8f7d80bd948c74446f66510de" [6]=> string(54) "write 3f11a1b8f7d80bd948c74446f66510de: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3f11a1b8f7d80bd948c74446f66510de" [10]=> string(40) "destroy 3f11a1b8f7d80bd948c74446f66510de" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.34
string(42) "PHPSESSID=a3ebf6e23545b9dd9c4d8aa1a4d5da62" string(32) "a3ebf6e23545b9dd9c4d8aa1a4d5da62" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1c92e36d8eb6059053effeb0e5327fe7" [3]=> string(52) "current session_id: 1c92e36d8eb6059053effeb0e5327fe7" [4]=> string(40) "destroy 1c92e36d8eb6059053effeb0e5327fe7" [5]=> string(52) "current session_id: a3ebf6e23545b9dd9c4d8aa1a4d5da62" [6]=> string(54) "write a3ebf6e23545b9dd9c4d8aa1a4d5da62: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a3ebf6e23545b9dd9c4d8aa1a4d5da62" [10]=> string(40) "destroy a3ebf6e23545b9dd9c4d8aa1a4d5da62" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.33
string(42) "PHPSESSID=09c754ddede747417daade54930399ff" string(32) "09c754ddede747417daade54930399ff" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 009238d6014b85b43ddbff3d64899ba0" [3]=> string(52) "current session_id: 009238d6014b85b43ddbff3d64899ba0" [4]=> string(40) "destroy 009238d6014b85b43ddbff3d64899ba0" [5]=> string(52) "current session_id: 09c754ddede747417daade54930399ff" [6]=> string(54) "write 09c754ddede747417daade54930399ff: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 09c754ddede747417daade54930399ff" [10]=> string(40) "destroy 09c754ddede747417daade54930399ff" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.32
string(42) "PHPSESSID=13744a9ac62d89d84b99950266daa7b3" string(32) "13744a9ac62d89d84b99950266daa7b3" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 334541c3806433fc01c0ee4d40c72847" [3]=> string(52) "current session_id: 334541c3806433fc01c0ee4d40c72847" [4]=> string(40) "destroy 334541c3806433fc01c0ee4d40c72847" [5]=> string(52) "current session_id: 13744a9ac62d89d84b99950266daa7b3" [6]=> string(54) "write 13744a9ac62d89d84b99950266daa7b3: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 13744a9ac62d89d84b99950266daa7b3" [10]=> string(40) "destroy 13744a9ac62d89d84b99950266daa7b3" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.31
string(42) "PHPSESSID=afa7ba281bef8d8d9bc28c380e66a76b" string(32) "afa7ba281bef8d8d9bc28c380e66a76b" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 10e1800b235cad402ffef03c85db8124" [3]=> string(52) "current session_id: 10e1800b235cad402ffef03c85db8124" [4]=> string(40) "destroy 10e1800b235cad402ffef03c85db8124" [5]=> string(52) "current session_id: afa7ba281bef8d8d9bc28c380e66a76b" [6]=> string(54) "write afa7ba281bef8d8d9bc28c380e66a76b: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read afa7ba281bef8d8d9bc28c380e66a76b" [10]=> string(40) "destroy afa7ba281bef8d8d9bc28c380e66a76b" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.30
string(42) "PHPSESSID=26c42c2f4a151cd93546b81a3f6c4360" string(32) "26c42c2f4a151cd93546b81a3f6c4360" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 595f0d13e1dda31ebe12700223060418" [3]=> string(52) "current session_id: 595f0d13e1dda31ebe12700223060418" [4]=> string(40) "destroy 595f0d13e1dda31ebe12700223060418" [5]=> string(52) "current session_id: 26c42c2f4a151cd93546b81a3f6c4360" [6]=> string(54) "write 26c42c2f4a151cd93546b81a3f6c4360: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 26c42c2f4a151cd93546b81a3f6c4360" [10]=> string(40) "destroy 26c42c2f4a151cd93546b81a3f6c4360" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.29
string(42) "PHPSESSID=9fe509a5f518d09ea4d42bbc42f1b5ad" string(32) "9fe509a5f518d09ea4d42bbc42f1b5ad" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 922d6c19820342f5ac8cd031f5686105" [3]=> string(52) "current session_id: 922d6c19820342f5ac8cd031f5686105" [4]=> string(40) "destroy 922d6c19820342f5ac8cd031f5686105" [5]=> string(52) "current session_id: 9fe509a5f518d09ea4d42bbc42f1b5ad" [6]=> string(54) "write 9fe509a5f518d09ea4d42bbc42f1b5ad: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9fe509a5f518d09ea4d42bbc42f1b5ad" [10]=> string(40) "destroy 9fe509a5f518d09ea4d42bbc42f1b5ad" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.28
string(42) "PHPSESSID=f1ef8ff5a9aa79721034a541f4a8de0a" string(32) "f1ef8ff5a9aa79721034a541f4a8de0a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a7082fc955ae0f556aaa7857ed690220" [3]=> string(52) "current session_id: a7082fc955ae0f556aaa7857ed690220" [4]=> string(40) "destroy a7082fc955ae0f556aaa7857ed690220" [5]=> string(52) "current session_id: f1ef8ff5a9aa79721034a541f4a8de0a" [6]=> string(54) "write f1ef8ff5a9aa79721034a541f4a8de0a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f1ef8ff5a9aa79721034a541f4a8de0a" [10]=> string(40) "destroy f1ef8ff5a9aa79721034a541f4a8de0a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.27
string(42) "PHPSESSID=bce44621f86ecccbf9abe050428dd97a" string(32) "bce44621f86ecccbf9abe050428dd97a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8bd2ee2eee0b91d0ff782c12e2e3f49f" [3]=> string(52) "current session_id: 8bd2ee2eee0b91d0ff782c12e2e3f49f" [4]=> string(40) "destroy 8bd2ee2eee0b91d0ff782c12e2e3f49f" [5]=> string(52) "current session_id: bce44621f86ecccbf9abe050428dd97a" [6]=> string(54) "write bce44621f86ecccbf9abe050428dd97a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read bce44621f86ecccbf9abe050428dd97a" [10]=> string(40) "destroy bce44621f86ecccbf9abe050428dd97a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.26
string(42) "PHPSESSID=5aa10c6d2645c92d84baade729e733cb" string(32) "5aa10c6d2645c92d84baade729e733cb" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f2aa3a6d4a9816f8b03c2cd45fea1bbd" [3]=> string(52) "current session_id: f2aa3a6d4a9816f8b03c2cd45fea1bbd" [4]=> string(40) "destroy f2aa3a6d4a9816f8b03c2cd45fea1bbd" [5]=> string(52) "current session_id: 5aa10c6d2645c92d84baade729e733cb" [6]=> string(54) "write 5aa10c6d2645c92d84baade729e733cb: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 5aa10c6d2645c92d84baade729e733cb" [10]=> string(40) "destroy 5aa10c6d2645c92d84baade729e733cb" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.25
string(42) "PHPSESSID=0e05a3621a917e2f51c68ae2a690a675" string(32) "0e05a3621a917e2f51c68ae2a690a675" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ae6c4d7e4a327d92703b720ad5d5d702" [3]=> string(52) "current session_id: ae6c4d7e4a327d92703b720ad5d5d702" [4]=> string(40) "destroy ae6c4d7e4a327d92703b720ad5d5d702" [5]=> string(52) "current session_id: 0e05a3621a917e2f51c68ae2a690a675" [6]=> string(54) "write 0e05a3621a917e2f51c68ae2a690a675: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0e05a3621a917e2f51c68ae2a690a675" [10]=> string(40) "destroy 0e05a3621a917e2f51c68ae2a690a675" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.24
string(42) "PHPSESSID=d69aea67f67924db7d745c981e4e8841" string(32) "d69aea67f67924db7d745c981e4e8841" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f19ba4d3a5f48aba19daccd8dfe9eacc" [3]=> string(52) "current session_id: f19ba4d3a5f48aba19daccd8dfe9eacc" [4]=> string(40) "destroy f19ba4d3a5f48aba19daccd8dfe9eacc" [5]=> string(52) "current session_id: d69aea67f67924db7d745c981e4e8841" [6]=> string(54) "write d69aea67f67924db7d745c981e4e8841: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d69aea67f67924db7d745c981e4e8841" [10]=> string(40) "destroy d69aea67f67924db7d745c981e4e8841" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.23
string(42) "PHPSESSID=fc1b80b2abbf992d10811f6dc6489a9a" string(32) "fc1b80b2abbf992d10811f6dc6489a9a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d61d6bc8deece069d57c6525e0738a94" [3]=> string(52) "current session_id: d61d6bc8deece069d57c6525e0738a94" [4]=> string(40) "destroy d61d6bc8deece069d57c6525e0738a94" [5]=> string(52) "current session_id: fc1b80b2abbf992d10811f6dc6489a9a" [6]=> string(54) "write fc1b80b2abbf992d10811f6dc6489a9a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read fc1b80b2abbf992d10811f6dc6489a9a" [10]=> string(40) "destroy fc1b80b2abbf992d10811f6dc6489a9a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.22
string(42) "PHPSESSID=9c8a3f88284445846afd16691876f18a" string(32) "9c8a3f88284445846afd16691876f18a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7e4e931033d5789891ac703742e3ba72" [3]=> string(52) "current session_id: 7e4e931033d5789891ac703742e3ba72" [4]=> string(40) "destroy 7e4e931033d5789891ac703742e3ba72" [5]=> string(52) "current session_id: 9c8a3f88284445846afd16691876f18a" [6]=> string(54) "write 9c8a3f88284445846afd16691876f18a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9c8a3f88284445846afd16691876f18a" [10]=> string(40) "destroy 9c8a3f88284445846afd16691876f18a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.21
string(42) "PHPSESSID=0ed460bb337d7a4d114d1803b2b00d9c" string(32) "0ed460bb337d7a4d114d1803b2b00d9c" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 033c0f87fa5cd82bfe8817bb3fe8dcd1" [3]=> string(52) "current session_id: 033c0f87fa5cd82bfe8817bb3fe8dcd1" [4]=> string(40) "destroy 033c0f87fa5cd82bfe8817bb3fe8dcd1" [5]=> string(52) "current session_id: 0ed460bb337d7a4d114d1803b2b00d9c" [6]=> string(54) "write 0ed460bb337d7a4d114d1803b2b00d9c: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0ed460bb337d7a4d114d1803b2b00d9c" [10]=> string(40) "destroy 0ed460bb337d7a4d114d1803b2b00d9c" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.20
string(42) "PHPSESSID=ebb59f4d6104ec0040d55c32c3cf0c33" string(32) "ebb59f4d6104ec0040d55c32c3cf0c33" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 452caba261ed9c41326637826da761b3" [3]=> string(52) "current session_id: 452caba261ed9c41326637826da761b3" [4]=> string(40) "destroy 452caba261ed9c41326637826da761b3" [5]=> string(52) "current session_id: ebb59f4d6104ec0040d55c32c3cf0c33" [6]=> string(54) "write ebb59f4d6104ec0040d55c32c3cf0c33: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read ebb59f4d6104ec0040d55c32c3cf0c33" [10]=> string(40) "destroy ebb59f4d6104ec0040d55c32c3cf0c33" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.19
string(42) "PHPSESSID=795d1099bd65e2a39963b81a8a8435c6" string(32) "795d1099bd65e2a39963b81a8a8435c6" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 085b27b88d78404ee5836b6096bf3906" [3]=> string(52) "current session_id: 085b27b88d78404ee5836b6096bf3906" [4]=> string(40) "destroy 085b27b88d78404ee5836b6096bf3906" [5]=> string(52) "current session_id: 795d1099bd65e2a39963b81a8a8435c6" [6]=> string(54) "write 795d1099bd65e2a39963b81a8a8435c6: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 795d1099bd65e2a39963b81a8a8435c6" [10]=> string(40) "destroy 795d1099bd65e2a39963b81a8a8435c6" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.18
string(42) "PHPSESSID=72e4d6e878c9f54016fe6cfe507f9e36" string(32) "72e4d6e878c9f54016fe6cfe507f9e36" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d59740e27b392fc9a33db6a41cef26ac" [3]=> string(52) "current session_id: d59740e27b392fc9a33db6a41cef26ac" [4]=> string(40) "destroy d59740e27b392fc9a33db6a41cef26ac" [5]=> string(52) "current session_id: 72e4d6e878c9f54016fe6cfe507f9e36" [6]=> string(54) "write 72e4d6e878c9f54016fe6cfe507f9e36: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 72e4d6e878c9f54016fe6cfe507f9e36" [10]=> string(40) "destroy 72e4d6e878c9f54016fe6cfe507f9e36" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.17
string(42) "PHPSESSID=f9ae173a01f9f6538cae36383240dcd5" string(32) "f9ae173a01f9f6538cae36383240dcd5" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a62321093ffc42c5bba3b969f001483f" [3]=> string(52) "current session_id: a62321093ffc42c5bba3b969f001483f" [4]=> string(40) "destroy a62321093ffc42c5bba3b969f001483f" [5]=> string(52) "current session_id: f9ae173a01f9f6538cae36383240dcd5" [6]=> string(54) "write f9ae173a01f9f6538cae36383240dcd5: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f9ae173a01f9f6538cae36383240dcd5" [10]=> string(40) "destroy f9ae173a01f9f6538cae36383240dcd5" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.16
string(42) "PHPSESSID=11a4907e04a0e8125b6d00e9f5498be5" string(32) "11a4907e04a0e8125b6d00e9f5498be5" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 39ad9578cdadc877b7500f6599c03c30" [3]=> string(52) "current session_id: 39ad9578cdadc877b7500f6599c03c30" [4]=> string(40) "destroy 39ad9578cdadc877b7500f6599c03c30" [5]=> string(52) "current session_id: 11a4907e04a0e8125b6d00e9f5498be5" [6]=> string(54) "write 11a4907e04a0e8125b6d00e9f5498be5: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 11a4907e04a0e8125b6d00e9f5498be5" [10]=> string(40) "destroy 11a4907e04a0e8125b6d00e9f5498be5" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.15
string(42) "PHPSESSID=c65254728f091d4ffe8297aef5316250" string(32) "c65254728f091d4ffe8297aef5316250" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e0a11dd4df9339b47265a535952b503c" [3]=> string(52) "current session_id: e0a11dd4df9339b47265a535952b503c" [4]=> string(40) "destroy e0a11dd4df9339b47265a535952b503c" [5]=> string(52) "current session_id: c65254728f091d4ffe8297aef5316250" [6]=> string(54) "write c65254728f091d4ffe8297aef5316250: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read c65254728f091d4ffe8297aef5316250" [10]=> string(40) "destroy c65254728f091d4ffe8297aef5316250" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.14
string(42) "PHPSESSID=0931e3644d106aff0eef737026f78d6a" string(32) "0931e3644d106aff0eef737026f78d6a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 78248240fa6dd5dba85da7f5d85ee64b" [3]=> string(52) "current session_id: 78248240fa6dd5dba85da7f5d85ee64b" [4]=> string(40) "destroy 78248240fa6dd5dba85da7f5d85ee64b" [5]=> string(52) "current session_id: 0931e3644d106aff0eef737026f78d6a" [6]=> string(54) "write 0931e3644d106aff0eef737026f78d6a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0931e3644d106aff0eef737026f78d6a" [10]=> string(40) "destroy 0931e3644d106aff0eef737026f78d6a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.13
string(42) "PHPSESSID=e2e4e9dff91fd94120e73f7c58961f99" string(32) "e2e4e9dff91fd94120e73f7c58961f99" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3e0ebefee5dab5417867bc8cbbc4f080" [3]=> string(52) "current session_id: 3e0ebefee5dab5417867bc8cbbc4f080" [4]=> string(40) "destroy 3e0ebefee5dab5417867bc8cbbc4f080" [5]=> string(52) "current session_id: e2e4e9dff91fd94120e73f7c58961f99" [6]=> string(54) "write e2e4e9dff91fd94120e73f7c58961f99: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e2e4e9dff91fd94120e73f7c58961f99" [10]=> string(40) "destroy e2e4e9dff91fd94120e73f7c58961f99" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.12
string(42) "PHPSESSID=6c16c6e15d99478db6c80cc0f935f5f7" string(32) "6c16c6e15d99478db6c80cc0f935f5f7" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 185fde73c943f96529cdedf6960a1f98" [3]=> string(52) "current session_id: 185fde73c943f96529cdedf6960a1f98" [4]=> string(40) "destroy 185fde73c943f96529cdedf6960a1f98" [5]=> string(52) "current session_id: 6c16c6e15d99478db6c80cc0f935f5f7" [6]=> string(54) "write 6c16c6e15d99478db6c80cc0f935f5f7: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 6c16c6e15d99478db6c80cc0f935f5f7" [10]=> string(40) "destroy 6c16c6e15d99478db6c80cc0f935f5f7" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.11
string(42) "PHPSESSID=aa51846b3ae88963c3b121e377509418" string(32) "aa51846b3ae88963c3b121e377509418" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e9096a7b2f27fa99d44732b83d95ee29" [3]=> string(52) "current session_id: e9096a7b2f27fa99d44732b83d95ee29" [4]=> string(40) "destroy e9096a7b2f27fa99d44732b83d95ee29" [5]=> string(52) "current session_id: aa51846b3ae88963c3b121e377509418" [6]=> string(54) "write aa51846b3ae88963c3b121e377509418: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read aa51846b3ae88963c3b121e377509418" [10]=> string(40) "destroy aa51846b3ae88963c3b121e377509418" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.10
string(42) "PHPSESSID=6315a01d2a894e5c758bf75eb78a23c9" string(32) "6315a01d2a894e5c758bf75eb78a23c9" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 987e74e9b536654055c1d7589a62155a" [3]=> string(52) "current session_id: 987e74e9b536654055c1d7589a62155a" [4]=> string(40) "destroy 987e74e9b536654055c1d7589a62155a" [5]=> string(52) "current session_id: 6315a01d2a894e5c758bf75eb78a23c9" [6]=> string(54) "write 6315a01d2a894e5c758bf75eb78a23c9: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 6315a01d2a894e5c758bf75eb78a23c9" [10]=> string(40) "destroy 6315a01d2a894e5c758bf75eb78a23c9" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.9
string(42) "PHPSESSID=3ee8578a145dd5fac85bc251f1d56428" string(32) "3ee8578a145dd5fac85bc251f1d56428" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a25fa82591d2907f34ade3300c0e123f" [3]=> string(52) "current session_id: a25fa82591d2907f34ade3300c0e123f" [4]=> string(40) "destroy a25fa82591d2907f34ade3300c0e123f" [5]=> string(52) "current session_id: 3ee8578a145dd5fac85bc251f1d56428" [6]=> string(54) "write 3ee8578a145dd5fac85bc251f1d56428: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3ee8578a145dd5fac85bc251f1d56428" [10]=> string(40) "destroy 3ee8578a145dd5fac85bc251f1d56428" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.8
string(42) "PHPSESSID=df57336fd7374bce726e07086bfc07fb" string(32) "df57336fd7374bce726e07086bfc07fb" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7f7970502f669826ee6a9eeb368d200b" [3]=> string(52) "current session_id: 7f7970502f669826ee6a9eeb368d200b" [4]=> string(40) "destroy 7f7970502f669826ee6a9eeb368d200b" [5]=> string(52) "current session_id: df57336fd7374bce726e07086bfc07fb" [6]=> string(54) "write df57336fd7374bce726e07086bfc07fb: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read df57336fd7374bce726e07086bfc07fb" [10]=> string(40) "destroy df57336fd7374bce726e07086bfc07fb" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.7
string(42) "PHPSESSID=390a4a23126603bbe1915d9fa7ad125f" string(32) "390a4a23126603bbe1915d9fa7ad125f" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 336e6699b157d1b3fab10b113ee5a483" [3]=> string(52) "current session_id: 336e6699b157d1b3fab10b113ee5a483" [4]=> string(40) "destroy 336e6699b157d1b3fab10b113ee5a483" [5]=> string(52) "current session_id: 390a4a23126603bbe1915d9fa7ad125f" [6]=> string(54) "write 390a4a23126603bbe1915d9fa7ad125f: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 390a4a23126603bbe1915d9fa7ad125f" [10]=> string(40) "destroy 390a4a23126603bbe1915d9fa7ad125f" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.6
string(42) "PHPSESSID=91e71a6f984f07de4b4454eeaa6578ce" string(32) "91e71a6f984f07de4b4454eeaa6578ce" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 88ef76013cf5ec9024b34af77c8f2e04" [3]=> string(52) "current session_id: 88ef76013cf5ec9024b34af77c8f2e04" [4]=> string(40) "destroy 88ef76013cf5ec9024b34af77c8f2e04" [5]=> string(52) "current session_id: 91e71a6f984f07de4b4454eeaa6578ce" [6]=> string(54) "write 91e71a6f984f07de4b4454eeaa6578ce: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 91e71a6f984f07de4b4454eeaa6578ce" [10]=> string(40) "destroy 91e71a6f984f07de4b4454eeaa6578ce" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.5
string(42) "PHPSESSID=56638e00979c8d1879569b2feca505a7" string(32) "56638e00979c8d1879569b2feca505a7" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8b04c63e7a4c787dc3dda458f041efd1" [3]=> string(52) "current session_id: 8b04c63e7a4c787dc3dda458f041efd1" [4]=> string(40) "destroy 8b04c63e7a4c787dc3dda458f041efd1" [5]=> string(52) "current session_id: 56638e00979c8d1879569b2feca505a7" [6]=> string(54) "write 56638e00979c8d1879569b2feca505a7: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 56638e00979c8d1879569b2feca505a7" [10]=> string(40) "destroy 56638e00979c8d1879569b2feca505a7" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.4
string(42) "PHPSESSID=a2f6d4f077c715ffa2670257521efbc0" string(32) "a2f6d4f077c715ffa2670257521efbc0" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 23121d4e2d79747ba024ae1596369b4d" [3]=> string(52) "current session_id: 23121d4e2d79747ba024ae1596369b4d" [4]=> string(40) "destroy 23121d4e2d79747ba024ae1596369b4d" [5]=> string(52) "current session_id: a2f6d4f077c715ffa2670257521efbc0" [6]=> string(54) "write a2f6d4f077c715ffa2670257521efbc0: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a2f6d4f077c715ffa2670257521efbc0" [10]=> string(40) "destroy a2f6d4f077c715ffa2670257521efbc0" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.3
string(42) "PHPSESSID=ccceea3708d6da2570fa2c34bee11dce" string(32) "ccceea3708d6da2570fa2c34bee11dce" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 74514ab782a45b1667acc3991cb45813" [3]=> string(52) "current session_id: 74514ab782a45b1667acc3991cb45813" [4]=> string(40) "destroy 74514ab782a45b1667acc3991cb45813" [5]=> string(52) "current session_id: ccceea3708d6da2570fa2c34bee11dce" [6]=> string(54) "write ccceea3708d6da2570fa2c34bee11dce: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read ccceea3708d6da2570fa2c34bee11dce" [10]=> string(40) "destroy ccceea3708d6da2570fa2c34bee11dce" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.2
string(42) "PHPSESSID=685b119d62a99d1bfc61c6e603557157" string(32) "685b119d62a99d1bfc61c6e603557157" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 486a91bcb7d98d63279008a1b0a9d0e2" [3]=> string(52) "current session_id: 486a91bcb7d98d63279008a1b0a9d0e2" [4]=> string(40) "destroy 486a91bcb7d98d63279008a1b0a9d0e2" [5]=> string(52) "current session_id: 685b119d62a99d1bfc61c6e603557157" [6]=> string(54) "write 685b119d62a99d1bfc61c6e603557157: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 685b119d62a99d1bfc61c6e603557157" [10]=> string(40) "destroy 685b119d62a99d1bfc61c6e603557157" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.1
string(42) "PHPSESSID=934eeba12f7a6b469242be494c9cefa7" string(32) "934eeba12f7a6b469242be494c9cefa7" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fecdd04099f4b5f445ef5a4cdd9862c5" [3]=> string(52) "current session_id: fecdd04099f4b5f445ef5a4cdd9862c5" [4]=> string(40) "destroy fecdd04099f4b5f445ef5a4cdd9862c5" [5]=> string(52) "current session_id: 934eeba12f7a6b469242be494c9cefa7" [6]=> string(54) "write 934eeba12f7a6b469242be494c9cefa7: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 934eeba12f7a6b469242be494c9cefa7" [10]=> string(40) "destroy 934eeba12f7a6b469242be494c9cefa7" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5.0
string(42) "PHPSESSID=9b4f61c56279f91df63f7617cd76753a" string(32) "9b4f61c56279f91df63f7617cd76753a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fc45bfa8a2e46588251904a784b45b90" [3]=> string(52) "current session_id: fc45bfa8a2e46588251904a784b45b90" [4]=> string(40) "destroy fc45bfa8a2e46588251904a784b45b90" [5]=> string(52) "current session_id: 9b4f61c56279f91df63f7617cd76753a" [6]=> string(54) "write 9b4f61c56279f91df63f7617cd76753a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9b4f61c56279f91df63f7617cd76753a" [10]=> string(40) "destroy 9b4f61c56279f91df63f7617cd76753a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.45
string(42) "PHPSESSID=b4820e10f3e253a1c0866593d9dcbc09" string(32) "b4820e10f3e253a1c0866593d9dcbc09" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 742acf49a4647b36e75d853862e45a7b" [3]=> string(52) "current session_id: 742acf49a4647b36e75d853862e45a7b" [4]=> string(40) "destroy 742acf49a4647b36e75d853862e45a7b" [5]=> string(52) "current session_id: b4820e10f3e253a1c0866593d9dcbc09" [6]=> string(54) "write b4820e10f3e253a1c0866593d9dcbc09: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read b4820e10f3e253a1c0866593d9dcbc09" [10]=> string(40) "destroy b4820e10f3e253a1c0866593d9dcbc09" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.44
string(42) "PHPSESSID=4c07c77d410d1f03594c8d39473fd5bb" string(32) "4c07c77d410d1f03594c8d39473fd5bb" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4a2ddc02c6d17293f2f344870f3411e0" [3]=> string(52) "current session_id: 4a2ddc02c6d17293f2f344870f3411e0" [4]=> string(40) "destroy 4a2ddc02c6d17293f2f344870f3411e0" [5]=> string(52) "current session_id: 4c07c77d410d1f03594c8d39473fd5bb" [6]=> string(54) "write 4c07c77d410d1f03594c8d39473fd5bb: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4c07c77d410d1f03594c8d39473fd5bb" [10]=> string(40) "destroy 4c07c77d410d1f03594c8d39473fd5bb" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.43
string(42) "PHPSESSID=cfe8ef95675fff5393d1c43d33fb5fe3" string(32) "cfe8ef95675fff5393d1c43d33fb5fe3" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d74f50cec9c848550dfdc96e98a64c81" [3]=> string(52) "current session_id: d74f50cec9c848550dfdc96e98a64c81" [4]=> string(40) "destroy d74f50cec9c848550dfdc96e98a64c81" [5]=> string(52) "current session_id: cfe8ef95675fff5393d1c43d33fb5fe3" [6]=> string(54) "write cfe8ef95675fff5393d1c43d33fb5fe3: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read cfe8ef95675fff5393d1c43d33fb5fe3" [10]=> string(40) "destroy cfe8ef95675fff5393d1c43d33fb5fe3" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.42
string(42) "PHPSESSID=0e95525c0856cf11515ff3f2c0cb24eb" string(32) "0e95525c0856cf11515ff3f2c0cb24eb" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1178e32e614953611a82812b6f79d76d" [3]=> string(52) "current session_id: 1178e32e614953611a82812b6f79d76d" [4]=> string(40) "destroy 1178e32e614953611a82812b6f79d76d" [5]=> string(52) "current session_id: 0e95525c0856cf11515ff3f2c0cb24eb" [6]=> string(54) "write 0e95525c0856cf11515ff3f2c0cb24eb: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0e95525c0856cf11515ff3f2c0cb24eb" [10]=> string(40) "destroy 0e95525c0856cf11515ff3f2c0cb24eb" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.41
string(42) "PHPSESSID=7d94a6dac69b944463c732c110b8607a" string(32) "7d94a6dac69b944463c732c110b8607a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4004589d5585724d7d6583484056fc73" [3]=> string(52) "current session_id: 4004589d5585724d7d6583484056fc73" [4]=> string(40) "destroy 4004589d5585724d7d6583484056fc73" [5]=> string(52) "current session_id: 7d94a6dac69b944463c732c110b8607a" [6]=> string(54) "write 7d94a6dac69b944463c732c110b8607a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 7d94a6dac69b944463c732c110b8607a" [10]=> string(40) "destroy 7d94a6dac69b944463c732c110b8607a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.40
string(42) "PHPSESSID=98dbb022202b695d1ebf76d295851f58" string(32) "98dbb022202b695d1ebf76d295851f58" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2bb02884531c0151e533328d35318490" [3]=> string(52) "current session_id: 2bb02884531c0151e533328d35318490" [4]=> string(40) "destroy 2bb02884531c0151e533328d35318490" [5]=> string(52) "current session_id: 98dbb022202b695d1ebf76d295851f58" [6]=> string(54) "write 98dbb022202b695d1ebf76d295851f58: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 98dbb022202b695d1ebf76d295851f58" [10]=> string(40) "destroy 98dbb022202b695d1ebf76d295851f58" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.39
string(42) "PHPSESSID=462bab814ee0a21da9845f3896c25467" string(32) "462bab814ee0a21da9845f3896c25467" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 52af510f9cc579559e72a755872c29c6" [3]=> string(52) "current session_id: 52af510f9cc579559e72a755872c29c6" [4]=> string(40) "destroy 52af510f9cc579559e72a755872c29c6" [5]=> string(52) "current session_id: 462bab814ee0a21da9845f3896c25467" [6]=> string(54) "write 462bab814ee0a21da9845f3896c25467: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 462bab814ee0a21da9845f3896c25467" [10]=> string(40) "destroy 462bab814ee0a21da9845f3896c25467" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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
string(42) "PHPSESSID=8a592d013ed215a475f3865470567573" string(32) "8a592d013ed215a475f3865470567573" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 853363170499e068609159a97bdf8fea" [3]=> string(52) "current session_id: 853363170499e068609159a97bdf8fea" [4]=> string(40) "destroy 853363170499e068609159a97bdf8fea" [5]=> string(52) "current session_id: 8a592d013ed215a475f3865470567573" [6]=> string(54) "write 8a592d013ed215a475f3865470567573: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8a592d013ed215a475f3865470567573" [10]=> string(40) "destroy 8a592d013ed215a475f3865470567573" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.37
string(42) "PHPSESSID=8f7f3e41aac8eb32fd4fc23214ec5e91" string(32) "8f7f3e41aac8eb32fd4fc23214ec5e91" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d61762f68a612f34a3d30a1c57006b87" [3]=> string(52) "current session_id: d61762f68a612f34a3d30a1c57006b87" [4]=> string(40) "destroy d61762f68a612f34a3d30a1c57006b87" [5]=> string(52) "current session_id: 8f7f3e41aac8eb32fd4fc23214ec5e91" [6]=> string(54) "write 8f7f3e41aac8eb32fd4fc23214ec5e91: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8f7f3e41aac8eb32fd4fc23214ec5e91" [10]=> string(40) "destroy 8f7f3e41aac8eb32fd4fc23214ec5e91" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.36
string(42) "PHPSESSID=4e5a2ff4288a71ae46f696a81406eff6" string(32) "4e5a2ff4288a71ae46f696a81406eff6" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 38e0082bfe34e7f0ff7c4ce5c8cd2648" [3]=> string(52) "current session_id: 38e0082bfe34e7f0ff7c4ce5c8cd2648" [4]=> string(40) "destroy 38e0082bfe34e7f0ff7c4ce5c8cd2648" [5]=> string(52) "current session_id: 4e5a2ff4288a71ae46f696a81406eff6" [6]=> string(54) "write 4e5a2ff4288a71ae46f696a81406eff6: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4e5a2ff4288a71ae46f696a81406eff6" [10]=> string(40) "destroy 4e5a2ff4288a71ae46f696a81406eff6" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.35
string(42) "PHPSESSID=92f84f1edc458592698617be618b5b4d" string(32) "92f84f1edc458592698617be618b5b4d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e9d27cfd4e0293a39e279f4af29e7bbe" [3]=> string(52) "current session_id: e9d27cfd4e0293a39e279f4af29e7bbe" [4]=> string(40) "destroy e9d27cfd4e0293a39e279f4af29e7bbe" [5]=> string(52) "current session_id: 92f84f1edc458592698617be618b5b4d" [6]=> string(54) "write 92f84f1edc458592698617be618b5b4d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 92f84f1edc458592698617be618b5b4d" [10]=> string(40) "destroy 92f84f1edc458592698617be618b5b4d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.34
string(42) "PHPSESSID=a9c12d27bdde49ae4005a07490bf174c" string(32) "a9c12d27bdde49ae4005a07490bf174c" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4b556c9ebea80fc7ca96a96ab2436446" [3]=> string(52) "current session_id: 4b556c9ebea80fc7ca96a96ab2436446" [4]=> string(40) "destroy 4b556c9ebea80fc7ca96a96ab2436446" [5]=> string(52) "current session_id: a9c12d27bdde49ae4005a07490bf174c" [6]=> string(54) "write a9c12d27bdde49ae4005a07490bf174c: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a9c12d27bdde49ae4005a07490bf174c" [10]=> string(40) "destroy a9c12d27bdde49ae4005a07490bf174c" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.33
string(42) "PHPSESSID=fda74711575a25b11d23202f7962b8a8" string(32) "fda74711575a25b11d23202f7962b8a8" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2bb88e41d61456e8199a299079972186" [3]=> string(52) "current session_id: 2bb88e41d61456e8199a299079972186" [4]=> string(40) "destroy 2bb88e41d61456e8199a299079972186" [5]=> string(52) "current session_id: fda74711575a25b11d23202f7962b8a8" [6]=> string(54) "write fda74711575a25b11d23202f7962b8a8: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read fda74711575a25b11d23202f7962b8a8" [10]=> string(40) "destroy fda74711575a25b11d23202f7962b8a8" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.32
string(42) "PHPSESSID=d81cee971fa044d4172365edb905ad25" string(32) "d81cee971fa044d4172365edb905ad25" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ca4bc459bacabd767ab7d352471d048d" [3]=> string(52) "current session_id: ca4bc459bacabd767ab7d352471d048d" [4]=> string(40) "destroy ca4bc459bacabd767ab7d352471d048d" [5]=> string(52) "current session_id: d81cee971fa044d4172365edb905ad25" [6]=> string(54) "write d81cee971fa044d4172365edb905ad25: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d81cee971fa044d4172365edb905ad25" [10]=> string(40) "destroy d81cee971fa044d4172365edb905ad25" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.31
string(42) "PHPSESSID=d901221ecdea76f30df651f9b1ebb406" string(32) "d901221ecdea76f30df651f9b1ebb406" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 76615ae5932ec589b4e95b2afcedffa7" [3]=> string(52) "current session_id: 76615ae5932ec589b4e95b2afcedffa7" [4]=> string(40) "destroy 76615ae5932ec589b4e95b2afcedffa7" [5]=> string(52) "current session_id: d901221ecdea76f30df651f9b1ebb406" [6]=> string(54) "write d901221ecdea76f30df651f9b1ebb406: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d901221ecdea76f30df651f9b1ebb406" [10]=> string(40) "destroy d901221ecdea76f30df651f9b1ebb406" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.30
string(42) "PHPSESSID=62860db951a2290ebbcfa7ce1de1846d" string(32) "62860db951a2290ebbcfa7ce1de1846d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 10e89f5eb58f64ce3dfe799a2d264a44" [3]=> string(52) "current session_id: 10e89f5eb58f64ce3dfe799a2d264a44" [4]=> string(40) "destroy 10e89f5eb58f64ce3dfe799a2d264a44" [5]=> string(52) "current session_id: 62860db951a2290ebbcfa7ce1de1846d" [6]=> string(54) "write 62860db951a2290ebbcfa7ce1de1846d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 62860db951a2290ebbcfa7ce1de1846d" [10]=> string(40) "destroy 62860db951a2290ebbcfa7ce1de1846d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.29
string(42) "PHPSESSID=7e83ba61b72222b04065e2fbf661013d" string(32) "7e83ba61b72222b04065e2fbf661013d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e66243bd139bd2f7784e3ffcd7273e89" [3]=> string(52) "current session_id: e66243bd139bd2f7784e3ffcd7273e89" [4]=> string(40) "destroy e66243bd139bd2f7784e3ffcd7273e89" [5]=> string(52) "current session_id: 7e83ba61b72222b04065e2fbf661013d" [6]=> string(54) "write 7e83ba61b72222b04065e2fbf661013d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 7e83ba61b72222b04065e2fbf661013d" [10]=> string(40) "destroy 7e83ba61b72222b04065e2fbf661013d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.28
string(42) "PHPSESSID=597d5284f18bb292a773b4b677f7b273" string(32) "597d5284f18bb292a773b4b677f7b273" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 018bc0badc0718b7cb129d998ca1c692" [3]=> string(52) "current session_id: 018bc0badc0718b7cb129d998ca1c692" [4]=> string(40) "destroy 018bc0badc0718b7cb129d998ca1c692" [5]=> string(52) "current session_id: 597d5284f18bb292a773b4b677f7b273" [6]=> string(54) "write 597d5284f18bb292a773b4b677f7b273: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 597d5284f18bb292a773b4b677f7b273" [10]=> string(40) "destroy 597d5284f18bb292a773b4b677f7b273" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.27
string(42) "PHPSESSID=c7a1a26b6fbb5a55f3f4979ccd21a58c" string(32) "c7a1a26b6fbb5a55f3f4979ccd21a58c" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 39277ff0a4916d40d1eabeaf09ab19d3" [3]=> string(52) "current session_id: 39277ff0a4916d40d1eabeaf09ab19d3" [4]=> string(40) "destroy 39277ff0a4916d40d1eabeaf09ab19d3" [5]=> string(52) "current session_id: c7a1a26b6fbb5a55f3f4979ccd21a58c" [6]=> string(54) "write c7a1a26b6fbb5a55f3f4979ccd21a58c: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read c7a1a26b6fbb5a55f3f4979ccd21a58c" [10]=> string(40) "destroy c7a1a26b6fbb5a55f3f4979ccd21a58c" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.26
string(42) "PHPSESSID=e5779919328c813486c2d6b3c4e1843a" string(32) "e5779919328c813486c2d6b3c4e1843a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f73fbef892e3f46dfe2b2a5ec4b2228f" [3]=> string(52) "current session_id: f73fbef892e3f46dfe2b2a5ec4b2228f" [4]=> string(40) "destroy f73fbef892e3f46dfe2b2a5ec4b2228f" [5]=> string(52) "current session_id: e5779919328c813486c2d6b3c4e1843a" [6]=> string(54) "write e5779919328c813486c2d6b3c4e1843a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e5779919328c813486c2d6b3c4e1843a" [10]=> string(40) "destroy e5779919328c813486c2d6b3c4e1843a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.25
string(42) "PHPSESSID=4ed491add1ad30ce41136a762a329e0d" string(32) "4ed491add1ad30ce41136a762a329e0d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4b0aae8dd9bbd70bc61fac8f19dd5ed2" [3]=> string(52) "current session_id: 4b0aae8dd9bbd70bc61fac8f19dd5ed2" [4]=> string(40) "destroy 4b0aae8dd9bbd70bc61fac8f19dd5ed2" [5]=> string(52) "current session_id: 4ed491add1ad30ce41136a762a329e0d" [6]=> string(54) "write 4ed491add1ad30ce41136a762a329e0d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4ed491add1ad30ce41136a762a329e0d" [10]=> string(40) "destroy 4ed491add1ad30ce41136a762a329e0d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.24
string(42) "PHPSESSID=419bffdcb292306ece30b888addd8bef" string(32) "419bffdcb292306ece30b888addd8bef" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b9370d881b32b73cdbe37c063c1affc9" [3]=> string(52) "current session_id: b9370d881b32b73cdbe37c063c1affc9" [4]=> string(40) "destroy b9370d881b32b73cdbe37c063c1affc9" [5]=> string(52) "current session_id: 419bffdcb292306ece30b888addd8bef" [6]=> string(54) "write 419bffdcb292306ece30b888addd8bef: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 419bffdcb292306ece30b888addd8bef" [10]=> string(40) "destroy 419bffdcb292306ece30b888addd8bef" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.23
string(42) "PHPSESSID=1320552639a595c3320029151eeeb8c1" string(32) "1320552639a595c3320029151eeeb8c1" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 883cdd4c2629dcd418948c906b80352e" [3]=> string(52) "current session_id: 883cdd4c2629dcd418948c906b80352e" [4]=> string(40) "destroy 883cdd4c2629dcd418948c906b80352e" [5]=> string(52) "current session_id: 1320552639a595c3320029151eeeb8c1" [6]=> string(54) "write 1320552639a595c3320029151eeeb8c1: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1320552639a595c3320029151eeeb8c1" [10]=> string(40) "destroy 1320552639a595c3320029151eeeb8c1" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.22
string(42) "PHPSESSID=206584ce1c3efd7d006bee7cc969b4d0" string(32) "206584ce1c3efd7d006bee7cc969b4d0" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9dd5fffe3629ce70c0dd664ce5884754" [3]=> string(52) "current session_id: 9dd5fffe3629ce70c0dd664ce5884754" [4]=> string(40) "destroy 9dd5fffe3629ce70c0dd664ce5884754" [5]=> string(52) "current session_id: 206584ce1c3efd7d006bee7cc969b4d0" [6]=> string(54) "write 206584ce1c3efd7d006bee7cc969b4d0: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 206584ce1c3efd7d006bee7cc969b4d0" [10]=> string(40) "destroy 206584ce1c3efd7d006bee7cc969b4d0" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.21
string(42) "PHPSESSID=caec0f073344c1af1bc47e1f6cede83c" string(32) "caec0f073344c1af1bc47e1f6cede83c" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 47b9af55475000e344918b2e6896ad6c" [3]=> string(52) "current session_id: 47b9af55475000e344918b2e6896ad6c" [4]=> string(40) "destroy 47b9af55475000e344918b2e6896ad6c" [5]=> string(52) "current session_id: caec0f073344c1af1bc47e1f6cede83c" [6]=> string(54) "write caec0f073344c1af1bc47e1f6cede83c: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read caec0f073344c1af1bc47e1f6cede83c" [10]=> string(40) "destroy caec0f073344c1af1bc47e1f6cede83c" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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
string(42) "PHPSESSID=23f7bc696e092ce8d704604115597a6a" string(32) "23f7bc696e092ce8d704604115597a6a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5cbb85a2f03e6b36d92a76e5700c6b6b" [3]=> string(52) "current session_id: 5cbb85a2f03e6b36d92a76e5700c6b6b" [4]=> string(40) "destroy 5cbb85a2f03e6b36d92a76e5700c6b6b" [5]=> string(52) "current session_id: 23f7bc696e092ce8d704604115597a6a" [6]=> string(54) "write 23f7bc696e092ce8d704604115597a6a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 23f7bc696e092ce8d704604115597a6a" [10]=> string(40) "destroy 23f7bc696e092ce8d704604115597a6a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.19
string(42) "PHPSESSID=f2381c1e227ef04f1bb9280b61bea9c0" string(32) "f2381c1e227ef04f1bb9280b61bea9c0" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e738ebbad1234729c73dedecad642821" [3]=> string(52) "current session_id: e738ebbad1234729c73dedecad642821" [4]=> string(40) "destroy e738ebbad1234729c73dedecad642821" [5]=> string(52) "current session_id: f2381c1e227ef04f1bb9280b61bea9c0" [6]=> string(54) "write f2381c1e227ef04f1bb9280b61bea9c0: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f2381c1e227ef04f1bb9280b61bea9c0" [10]=> string(40) "destroy f2381c1e227ef04f1bb9280b61bea9c0" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.18
string(42) "PHPSESSID=fc66454a3fe990e0fa8f0315e8df540f" string(32) "fc66454a3fe990e0fa8f0315e8df540f" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 864e3228cc58abece3df5fd4a7262c56" [3]=> string(52) "current session_id: 864e3228cc58abece3df5fd4a7262c56" [4]=> string(40) "destroy 864e3228cc58abece3df5fd4a7262c56" [5]=> string(52) "current session_id: fc66454a3fe990e0fa8f0315e8df540f" [6]=> string(54) "write fc66454a3fe990e0fa8f0315e8df540f: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read fc66454a3fe990e0fa8f0315e8df540f" [10]=> string(40) "destroy fc66454a3fe990e0fa8f0315e8df540f" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.17
string(42) "PHPSESSID=de53a28fbf2246145cba30cb9a0c46e0" string(32) "de53a28fbf2246145cba30cb9a0c46e0" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 65968930b7736d3865d9b1b19cec86cf" [3]=> string(52) "current session_id: 65968930b7736d3865d9b1b19cec86cf" [4]=> string(40) "destroy 65968930b7736d3865d9b1b19cec86cf" [5]=> string(52) "current session_id: de53a28fbf2246145cba30cb9a0c46e0" [6]=> string(54) "write de53a28fbf2246145cba30cb9a0c46e0: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read de53a28fbf2246145cba30cb9a0c46e0" [10]=> string(40) "destroy de53a28fbf2246145cba30cb9a0c46e0" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.16
string(42) "PHPSESSID=5ba91ff6a3bc5f8e0415f1f4588eb9da" string(32) "5ba91ff6a3bc5f8e0415f1f4588eb9da" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 330bda0c939e87bd324293a7220391da" [3]=> string(52) "current session_id: 330bda0c939e87bd324293a7220391da" [4]=> string(40) "destroy 330bda0c939e87bd324293a7220391da" [5]=> string(52) "current session_id: 5ba91ff6a3bc5f8e0415f1f4588eb9da" [6]=> string(54) "write 5ba91ff6a3bc5f8e0415f1f4588eb9da: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 5ba91ff6a3bc5f8e0415f1f4588eb9da" [10]=> string(40) "destroy 5ba91ff6a3bc5f8e0415f1f4588eb9da" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.15
string(42) "PHPSESSID=012133a3f9145d9d10402c321c3e622f" string(32) "012133a3f9145d9d10402c321c3e622f" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 71f223c6561154b80dd929a05ce8aeda" [3]=> string(52) "current session_id: 71f223c6561154b80dd929a05ce8aeda" [4]=> string(40) "destroy 71f223c6561154b80dd929a05ce8aeda" [5]=> string(52) "current session_id: 012133a3f9145d9d10402c321c3e622f" [6]=> string(54) "write 012133a3f9145d9d10402c321c3e622f: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 012133a3f9145d9d10402c321c3e622f" [10]=> string(40) "destroy 012133a3f9145d9d10402c321c3e622f" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.14
string(42) "PHPSESSID=9f90014a904d9c919e15bb9327ca253a" string(32) "9f90014a904d9c919e15bb9327ca253a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 72f2cd0972231f8ea03d33029c764d46" [3]=> string(52) "current session_id: 72f2cd0972231f8ea03d33029c764d46" [4]=> string(40) "destroy 72f2cd0972231f8ea03d33029c764d46" [5]=> string(52) "current session_id: 9f90014a904d9c919e15bb9327ca253a" [6]=> string(54) "write 9f90014a904d9c919e15bb9327ca253a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9f90014a904d9c919e15bb9327ca253a" [10]=> string(40) "destroy 9f90014a904d9c919e15bb9327ca253a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.13
string(42) "PHPSESSID=56d373a38e4693b5229822d09586c104" string(32) "56d373a38e4693b5229822d09586c104" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 318ed36e6237cb8ac80d4e6eacbf0b8d" [3]=> string(52) "current session_id: 318ed36e6237cb8ac80d4e6eacbf0b8d" [4]=> string(40) "destroy 318ed36e6237cb8ac80d4e6eacbf0b8d" [5]=> string(52) "current session_id: 56d373a38e4693b5229822d09586c104" [6]=> string(54) "write 56d373a38e4693b5229822d09586c104: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 56d373a38e4693b5229822d09586c104" [10]=> string(40) "destroy 56d373a38e4693b5229822d09586c104" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.12
string(42) "PHPSESSID=0512e732e60be6a1834b5d4baccad6bf" string(32) "0512e732e60be6a1834b5d4baccad6bf" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d8b7d520b30e889deb88c3a929bc55de" [3]=> string(52) "current session_id: d8b7d520b30e889deb88c3a929bc55de" [4]=> string(40) "destroy d8b7d520b30e889deb88c3a929bc55de" [5]=> string(52) "current session_id: 0512e732e60be6a1834b5d4baccad6bf" [6]=> string(54) "write 0512e732e60be6a1834b5d4baccad6bf: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0512e732e60be6a1834b5d4baccad6bf" [10]=> string(40) "destroy 0512e732e60be6a1834b5d4baccad6bf" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.11
string(42) "PHPSESSID=d89bedaa84cc6ef1c2c247eaf9c2d7e5" string(32) "d89bedaa84cc6ef1c2c247eaf9c2d7e5" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a3947b06704be8f53e64825e177d1047" [3]=> string(52) "current session_id: a3947b06704be8f53e64825e177d1047" [4]=> string(40) "destroy a3947b06704be8f53e64825e177d1047" [5]=> string(52) "current session_id: d89bedaa84cc6ef1c2c247eaf9c2d7e5" [6]=> string(54) "write d89bedaa84cc6ef1c2c247eaf9c2d7e5: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d89bedaa84cc6ef1c2c247eaf9c2d7e5" [10]=> string(40) "destroy d89bedaa84cc6ef1c2c247eaf9c2d7e5" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.10
string(42) "PHPSESSID=e0ff9f0fc083e0f288eb1cf591e9327a" string(32) "e0ff9f0fc083e0f288eb1cf591e9327a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6557e28442418db70f634ceeae611ae4" [3]=> string(52) "current session_id: 6557e28442418db70f634ceeae611ae4" [4]=> string(40) "destroy 6557e28442418db70f634ceeae611ae4" [5]=> string(52) "current session_id: e0ff9f0fc083e0f288eb1cf591e9327a" [6]=> string(54) "write e0ff9f0fc083e0f288eb1cf591e9327a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e0ff9f0fc083e0f288eb1cf591e9327a" [10]=> string(40) "destroy e0ff9f0fc083e0f288eb1cf591e9327a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.9
string(42) "PHPSESSID=d3045668ef905af9a90cc5951016ccc3" string(32) "d3045668ef905af9a90cc5951016ccc3" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9052e262fdc01ec78532f626b97b6fee" [3]=> string(52) "current session_id: 9052e262fdc01ec78532f626b97b6fee" [4]=> string(40) "destroy 9052e262fdc01ec78532f626b97b6fee" [5]=> string(52) "current session_id: d3045668ef905af9a90cc5951016ccc3" [6]=> string(54) "write d3045668ef905af9a90cc5951016ccc3: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d3045668ef905af9a90cc5951016ccc3" [10]=> string(40) "destroy d3045668ef905af9a90cc5951016ccc3" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.8
string(42) "PHPSESSID=ce1376d50f64385e3ae7b7c7c2bc5516" string(32) "ce1376d50f64385e3ae7b7c7c2bc5516" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 583bafc5f9e3ac4e7dbc85b35c2f27ce" [3]=> string(52) "current session_id: 583bafc5f9e3ac4e7dbc85b35c2f27ce" [4]=> string(40) "destroy 583bafc5f9e3ac4e7dbc85b35c2f27ce" [5]=> string(52) "current session_id: ce1376d50f64385e3ae7b7c7c2bc5516" [6]=> string(54) "write ce1376d50f64385e3ae7b7c7c2bc5516: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read ce1376d50f64385e3ae7b7c7c2bc5516" [10]=> string(40) "destroy ce1376d50f64385e3ae7b7c7c2bc5516" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.7
string(42) "PHPSESSID=8795ad89dcf9985be5f6767ab12f7c3b" string(32) "8795ad89dcf9985be5f6767ab12f7c3b" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a70076899894b1489125fbd3878052a4" [3]=> string(52) "current session_id: a70076899894b1489125fbd3878052a4" [4]=> string(40) "destroy a70076899894b1489125fbd3878052a4" [5]=> string(52) "current session_id: 8795ad89dcf9985be5f6767ab12f7c3b" [6]=> string(54) "write 8795ad89dcf9985be5f6767ab12f7c3b: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8795ad89dcf9985be5f6767ab12f7c3b" [10]=> string(40) "destroy 8795ad89dcf9985be5f6767ab12f7c3b" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.6
string(42) "PHPSESSID=676f1fc8c32343e45876666eefc61ef9" string(32) "676f1fc8c32343e45876666eefc61ef9" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 55346cc56bc5f39d107d2c3dc7294b15" [3]=> string(52) "current session_id: 55346cc56bc5f39d107d2c3dc7294b15" [4]=> string(40) "destroy 55346cc56bc5f39d107d2c3dc7294b15" [5]=> string(52) "current session_id: 676f1fc8c32343e45876666eefc61ef9" [6]=> string(54) "write 676f1fc8c32343e45876666eefc61ef9: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 676f1fc8c32343e45876666eefc61ef9" [10]=> string(40) "destroy 676f1fc8c32343e45876666eefc61ef9" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.5
string(42) "PHPSESSID=678c9b6dbdc37e51ae299435b95b6344" string(32) "678c9b6dbdc37e51ae299435b95b6344" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 229d1731c233d5656b039587980c7d4f" [3]=> string(52) "current session_id: 229d1731c233d5656b039587980c7d4f" [4]=> string(40) "destroy 229d1731c233d5656b039587980c7d4f" [5]=> string(52) "current session_id: 678c9b6dbdc37e51ae299435b95b6344" [6]=> string(54) "write 678c9b6dbdc37e51ae299435b95b6344: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 678c9b6dbdc37e51ae299435b95b6344" [10]=> string(40) "destroy 678c9b6dbdc37e51ae299435b95b6344" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.4
string(42) "PHPSESSID=190a1bcb10677a9de31e11baf7e34fef" string(32) "190a1bcb10677a9de31e11baf7e34fef" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 274e0d1e87a9ed91e7ac810a0d6c5ad5" [3]=> string(52) "current session_id: 274e0d1e87a9ed91e7ac810a0d6c5ad5" [4]=> string(40) "destroy 274e0d1e87a9ed91e7ac810a0d6c5ad5" [5]=> string(52) "current session_id: 190a1bcb10677a9de31e11baf7e34fef" [6]=> string(54) "write 190a1bcb10677a9de31e11baf7e34fef: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 190a1bcb10677a9de31e11baf7e34fef" [10]=> string(40) "destroy 190a1bcb10677a9de31e11baf7e34fef" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.3
string(42) "PHPSESSID=9ed37158267f24ff2e7eee3bd85a72ad" string(32) "9ed37158267f24ff2e7eee3bd85a72ad" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 96bef69279bb2f2c404ca0704f2590a8" [3]=> string(52) "current session_id: 96bef69279bb2f2c404ca0704f2590a8" [4]=> string(40) "destroy 96bef69279bb2f2c404ca0704f2590a8" [5]=> string(52) "current session_id: 9ed37158267f24ff2e7eee3bd85a72ad" [6]=> string(54) "write 9ed37158267f24ff2e7eee3bd85a72ad: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9ed37158267f24ff2e7eee3bd85a72ad" [10]=> string(40) "destroy 9ed37158267f24ff2e7eee3bd85a72ad" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.2
string(42) "PHPSESSID=c4e3c717f8c37c50e409e0e523a464fa" string(32) "c4e3c717f8c37c50e409e0e523a464fa" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 44a0d014de7f9227e5782394faf9f85f" [3]=> string(52) "current session_id: 44a0d014de7f9227e5782394faf9f85f" [4]=> string(40) "destroy 44a0d014de7f9227e5782394faf9f85f" [5]=> string(52) "current session_id: c4e3c717f8c37c50e409e0e523a464fa" [6]=> string(54) "write c4e3c717f8c37c50e409e0e523a464fa: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read c4e3c717f8c37c50e409e0e523a464fa" [10]=> string(40) "destroy c4e3c717f8c37c50e409e0e523a464fa" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.1
string(42) "PHPSESSID=06a43b9d25105138dbf580b7778eae7f" string(32) "06a43b9d25105138dbf580b7778eae7f" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 974611b89a93f46bb296856d1fea85bc" [3]=> string(52) "current session_id: 974611b89a93f46bb296856d1fea85bc" [4]=> string(40) "destroy 974611b89a93f46bb296856d1fea85bc" [5]=> string(52) "current session_id: 06a43b9d25105138dbf580b7778eae7f" [6]=> string(54) "write 06a43b9d25105138dbf580b7778eae7f: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 06a43b9d25105138dbf580b7778eae7f" [10]=> string(40) "destroy 06a43b9d25105138dbf580b7778eae7f" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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.0
string(42) "PHPSESSID=c1fec0d6bf3488a0b535b353d3812d99" string(32) "c1fec0d6bf3488a0b535b353d3812d99" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/nWKJG:59) in /in/nWKJG on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/nWKJG:59) in /in/nWKJG on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3813c10e10b81e9b27aeeea249c1debe" [3]=> string(52) "current session_id: 3813c10e10b81e9b27aeeea249c1debe" [4]=> string(40) "destroy 3813c10e10b81e9b27aeeea249c1debe" [5]=> string(52) "current session_id: c1fec0d6bf3488a0b535b353d3812d99" [6]=> string(54) "write c1fec0d6bf3488a0b535b353d3812d99: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read c1fec0d6bf3488a0b535b353d3812d99" [10]=> string(40) "destroy c1fec0d6bf3488a0b535b353d3812d99" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [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/nWKJG 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/nWKJG on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/nWKJG 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/nWKJG on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/nWKJG 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/nWKJG 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/nWKJG on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/nWKJG on line 4
Process exited with code 255.

preferences:
334.73 ms | 401 KiB | 459 Q