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_destroy(); session_destroy(); session_write_close(); session_start(); session_destroy(); $handler->messages[] = var_export($_SESSION, true); $handler->messages[] = 'current session_id: ' . var_export(session_id(), true); session_id('explicit-session-id'); session_start(); $_SESSION['john'] = 'doe';
Output for 8.1.0 - 8.1.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/EglaO 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/EglaO 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/EglaO 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/EglaO 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/EglaO 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/EglaO on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/EglaO on line 45 Warning: session_start(): Session cannot be started after headers have already been sent in /in/EglaO on line 51 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/EglaO on line 56 Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 58 Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Session cannot be started after headers have already been sent in /in/EglaO on line 62 Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 63 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/EglaO on line 68 Warning: session_start(): Session cannot be started after headers have already been sent in /in/EglaO on line 69 array(5) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(20) "current session_id: " [2]=> string(20) "current session_id: " [3]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [4]=> string(22) "current session_id: ''" }
Output for 8.0.0 - 8.0.30
Fatal error: Uncaught TypeError: Session callback must have a return value of type bool, null returned in /in/EglaO:51 Stack trace: #0 /in/EglaO(51): session_start() #1 {main} thrown in /in/EglaO on line 51 array(2) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" }
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: session_start(): Session callback expects true/false return value in /in/EglaO on line 51 Warning: session_start(): Session callback expects true/false return value in /in/EglaO on line 51 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/EglaO on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/EglaO on line 56 Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 58 Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot start session when headers already sent in /in/EglaO on line 62 Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 63 Warning: session_id(): Cannot change session id when headers already sent in /in/EglaO on line 68 Warning: session_start(): Cannot start session when headers already sent in /in/EglaO 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/EglaO on line 51 Warning: session_start(): Session callback expects true/false return value in /in/EglaO on line 51 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/EglaO on line 51
Process exited with code 255.
Output for 7.0.0 - 7.0.20
Warning: session_start(): Session callback expects true/false return value in /in/EglaO on line 51 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/EglaO on line 51 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.28
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e790a7edf1facccb599e5f7aa6bd186a" [3]=> string(52) "current session_id: e790a7edf1facccb599e5f7aa6bd186a" [4]=> string(40) "destroy e790a7edf1facccb599e5f7aa6bd186a" [5]=> string(52) "current session_id: 4bec2078b579b3e174282fb8dd85f34b" [6]=> string(40) "destroy 4bec2078b579b3e174282fb8dd85f34b" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 037e26ef49b3e1a89c8f2d3b67c89657" [10]=> string(40) "destroy 037e26ef49b3e1a89c8f2d3b67c89657" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read aa31a544dcfb564308aa81b216da9442" [3]=> string(52) "current session_id: aa31a544dcfb564308aa81b216da9442" [4]=> string(40) "destroy aa31a544dcfb564308aa81b216da9442" [5]=> string(52) "current session_id: ae4954cad5a3ecb5d237487c11a7cfaa" [6]=> string(40) "destroy ae4954cad5a3ecb5d237487c11a7cfaa" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 6cce92a3c7c29a5aa24dc5ce6a74b111" [10]=> string(40) "destroy 6cce92a3c7c29a5aa24dc5ce6a74b111" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read adab043b9753419e25c2c2920014fb92" [3]=> string(52) "current session_id: adab043b9753419e25c2c2920014fb92" [4]=> string(40) "destroy adab043b9753419e25c2c2920014fb92" [5]=> string(52) "current session_id: 614327378f5aaad491bff5abc5472bd3" [6]=> string(40) "destroy 614327378f5aaad491bff5abc5472bd3" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d716900f68d7443ce9e6e85f59d49454" [10]=> string(40) "destroy d716900f68d7443ce9e6e85f59d49454" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0fc47460387943b5657dcb9ed9143d19" [3]=> string(52) "current session_id: 0fc47460387943b5657dcb9ed9143d19" [4]=> string(40) "destroy 0fc47460387943b5657dcb9ed9143d19" [5]=> string(52) "current session_id: 7cb319731e226ec00aeaebfcc46ebf7c" [6]=> string(40) "destroy 7cb319731e226ec00aeaebfcc46ebf7c" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 824fb876104f0a4ea2494883c189bd63" [10]=> string(40) "destroy 824fb876104f0a4ea2494883c189bd63" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cb0502896065eba376dc05e3b712e064" [3]=> string(52) "current session_id: cb0502896065eba376dc05e3b712e064" [4]=> string(40) "destroy cb0502896065eba376dc05e3b712e064" [5]=> string(52) "current session_id: 2d843edf11b1dbd2a60b528649502a48" [6]=> string(40) "destroy 2d843edf11b1dbd2a60b528649502a48" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read aefc9db9f2d8b9067662665ab9c1da4a" [10]=> string(40) "destroy aefc9db9f2d8b9067662665ab9c1da4a" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a94c0552314d28c1b7a695d6ab066063" [3]=> string(52) "current session_id: a94c0552314d28c1b7a695d6ab066063" [4]=> string(40) "destroy a94c0552314d28c1b7a695d6ab066063" [5]=> string(52) "current session_id: db0cc1d291fe4837c6d6a43edc54e22e" [6]=> string(40) "destroy db0cc1d291fe4837c6d6a43edc54e22e" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 07dd1fb37bc6525caf66571aa1b0cb81" [10]=> string(40) "destroy 07dd1fb37bc6525caf66571aa1b0cb81" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 70f1775b4cce55250e093316487922d3" [3]=> string(52) "current session_id: 70f1775b4cce55250e093316487922d3" [4]=> string(40) "destroy 70f1775b4cce55250e093316487922d3" [5]=> string(52) "current session_id: e4ee5eb6b05c0b51f99108b0a520af84" [6]=> string(40) "destroy e4ee5eb6b05c0b51f99108b0a520af84" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f1637111c55c5747918bc6478e5a1f1a" [10]=> string(40) "destroy f1637111c55c5747918bc6478e5a1f1a" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2226f8cbd294b31314aeb86be290cae7" [3]=> string(52) "current session_id: 2226f8cbd294b31314aeb86be290cae7" [4]=> string(40) "destroy 2226f8cbd294b31314aeb86be290cae7" [5]=> string(52) "current session_id: b7e3572283268dedf6009c69e9960040" [6]=> string(40) "destroy b7e3572283268dedf6009c69e9960040" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read c6114e7ac4b5518cf76d1305251ea817" [10]=> string(40) "destroy c6114e7ac4b5518cf76d1305251ea817" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 113e31c0baf58d9a533f3defcd34bad9" [3]=> string(52) "current session_id: 113e31c0baf58d9a533f3defcd34bad9" [4]=> string(40) "destroy 113e31c0baf58d9a533f3defcd34bad9" [5]=> string(52) "current session_id: b4eace7ce66ec7a7f65bf4a849e482f1" [6]=> string(40) "destroy b4eace7ce66ec7a7f65bf4a849e482f1" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0b9501a46eb040b95c2cc92e5093c246" [10]=> string(40) "destroy 0b9501a46eb040b95c2cc92e5093c246" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 82d654abca94260a3981d58a8afd2881" [3]=> string(52) "current session_id: 82d654abca94260a3981d58a8afd2881" [4]=> string(40) "destroy 82d654abca94260a3981d58a8afd2881" [5]=> string(52) "current session_id: b8204db3a9d0904abf00a328402606f2" [6]=> string(40) "destroy b8204db3a9d0904abf00a328402606f2" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9a135324228391be1bb7cd53e2c6c5d4" [10]=> string(40) "destroy 9a135324228391be1bb7cd53e2c6c5d4" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ef27d96fa8173ac624cdc10dd47013ce" [3]=> string(52) "current session_id: ef27d96fa8173ac624cdc10dd47013ce" [4]=> string(40) "destroy ef27d96fa8173ac624cdc10dd47013ce" [5]=> string(52) "current session_id: 302c440ef57003a65a76aa010450d17f" [6]=> string(40) "destroy 302c440ef57003a65a76aa010450d17f" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8e791836be0a9386b84f4ddb9f3e5621" [10]=> string(40) "destroy 8e791836be0a9386b84f4ddb9f3e5621" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b29cdc1b13afbb824bcfd2f3ea3862dd" [3]=> string(52) "current session_id: b29cdc1b13afbb824bcfd2f3ea3862dd" [4]=> string(40) "destroy b29cdc1b13afbb824bcfd2f3ea3862dd" [5]=> string(52) "current session_id: 1449540563d7788a02e1462d3b909f96" [6]=> string(40) "destroy 1449540563d7788a02e1462d3b909f96" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 450754592588b24779e92f9d13af9558" [10]=> string(40) "destroy 450754592588b24779e92f9d13af9558" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0ecebff6226042a37503d68c63c8ab14" [3]=> string(52) "current session_id: 0ecebff6226042a37503d68c63c8ab14" [4]=> string(40) "destroy 0ecebff6226042a37503d68c63c8ab14" [5]=> string(52) "current session_id: eff589cab23a92d2b4c0ebaa45e8eebe" [6]=> string(40) "destroy eff589cab23a92d2b4c0ebaa45e8eebe" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 62bd816c9534c29119ddfbb1fbd45112" [10]=> string(40) "destroy 62bd816c9534c29119ddfbb1fbd45112" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f1fb32fe84f3a8b0220ac26b907af316" [3]=> string(52) "current session_id: f1fb32fe84f3a8b0220ac26b907af316" [4]=> string(40) "destroy f1fb32fe84f3a8b0220ac26b907af316" [5]=> string(52) "current session_id: f3bf2d42fb12c839b36fb6d36b4843c6" [6]=> string(40) "destroy f3bf2d42fb12c839b36fb6d36b4843c6" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 5e509308d29af0827477788663d9ab24" [10]=> string(40) "destroy 5e509308d29af0827477788663d9ab24" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7b7fddbf257ef082fb6ae9712a05b044" [3]=> string(52) "current session_id: 7b7fddbf257ef082fb6ae9712a05b044" [4]=> string(40) "destroy 7b7fddbf257ef082fb6ae9712a05b044" [5]=> string(52) "current session_id: d48c98162c32e1f39ace79e364afcf57" [6]=> string(40) "destroy d48c98162c32e1f39ace79e364afcf57" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f503a90a5975116e1b65580bd37605bb" [10]=> string(40) "destroy f503a90a5975116e1b65580bd37605bb" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dff0324bca484bb3ea51dbaa6c7ea34e" [3]=> string(52) "current session_id: dff0324bca484bb3ea51dbaa6c7ea34e" [4]=> string(40) "destroy dff0324bca484bb3ea51dbaa6c7ea34e" [5]=> string(52) "current session_id: d847a258a4a89cf52c0dbfd701b068e9" [6]=> string(40) "destroy d847a258a4a89cf52c0dbfd701b068e9" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f1de76262952145ac9fcb96a368d5d86" [10]=> string(40) "destroy f1de76262952145ac9fcb96a368d5d86" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b9445c22bb7144ad4732a8a85ecb752d" [3]=> string(52) "current session_id: b9445c22bb7144ad4732a8a85ecb752d" [4]=> string(40) "destroy b9445c22bb7144ad4732a8a85ecb752d" [5]=> string(52) "current session_id: b6f36a9b4f4ed0f5dd0176565e5c9d59" [6]=> string(40) "destroy b6f36a9b4f4ed0f5dd0176565e5c9d59" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8b16975b6be4db885e7cf89931794517" [10]=> string(40) "destroy 8b16975b6be4db885e7cf89931794517" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a16478974569add1cec0e0cab190a73d" [3]=> string(52) "current session_id: a16478974569add1cec0e0cab190a73d" [4]=> string(40) "destroy a16478974569add1cec0e0cab190a73d" [5]=> string(52) "current session_id: f7bc032850c08dd64d82697e38eaa0a4" [6]=> string(40) "destroy f7bc032850c08dd64d82697e38eaa0a4" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1eb86c737fb1ec2e7fef5316e8bdcb1b" [10]=> string(40) "destroy 1eb86c737fb1ec2e7fef5316e8bdcb1b" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 06da2266f6aeeac7af10d2c8c31241ed" [3]=> string(52) "current session_id: 06da2266f6aeeac7af10d2c8c31241ed" [4]=> string(40) "destroy 06da2266f6aeeac7af10d2c8c31241ed" [5]=> string(52) "current session_id: 66dace4d80eeb59dc185c4a027d7f1cc" [6]=> string(40) "destroy 66dace4d80eeb59dc185c4a027d7f1cc" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 56c5d70ad631b7e3a2f6301240b7f81e" [10]=> string(40) "destroy 56c5d70ad631b7e3a2f6301240b7f81e" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9e68a0985731353ccc6833dfb5c8f9e1" [3]=> string(52) "current session_id: 9e68a0985731353ccc6833dfb5c8f9e1" [4]=> string(40) "destroy 9e68a0985731353ccc6833dfb5c8f9e1" [5]=> string(52) "current session_id: 1c81553b4cdef3cf8d7b1d723292bbbd" [6]=> string(40) "destroy 1c81553b4cdef3cf8d7b1d723292bbbd" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e90325039f7ab894615157a8fc526fd8" [10]=> string(40) "destroy e90325039f7ab894615157a8fc526fd8" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 83c700000a432a4ca78c32605ab9c49c" [3]=> string(52) "current session_id: 83c700000a432a4ca78c32605ab9c49c" [4]=> string(40) "destroy 83c700000a432a4ca78c32605ab9c49c" [5]=> string(52) "current session_id: 563a8d27f304970bda18b09732ebb903" [6]=> string(40) "destroy 563a8d27f304970bda18b09732ebb903" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 13a970a1fd4ece0bebea84be5aba3bb5" [10]=> string(40) "destroy 13a970a1fd4ece0bebea84be5aba3bb5" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 66ad70cadf423eff8dee946234d2845c" [3]=> string(52) "current session_id: 66ad70cadf423eff8dee946234d2845c" [4]=> string(40) "destroy 66ad70cadf423eff8dee946234d2845c" [5]=> string(52) "current session_id: 10e99dfb738007f9e1fe8c3f35bd2acc" [6]=> string(40) "destroy 10e99dfb738007f9e1fe8c3f35bd2acc" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e9380b8d1aaa50c7e1a5c0b3a99a0738" [10]=> string(40) "destroy e9380b8d1aaa50c7e1a5c0b3a99a0738" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3aea3c027a1f911a5557db763e4a2be1" [3]=> string(52) "current session_id: 3aea3c027a1f911a5557db763e4a2be1" [4]=> string(40) "destroy 3aea3c027a1f911a5557db763e4a2be1" [5]=> string(52) "current session_id: cc0496f9d8b18762a6783b9ecf2dd353" [6]=> string(40) "destroy cc0496f9d8b18762a6783b9ecf2dd353" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2eb3bd51f9c9cd93eabf5cc2d215e4d9" [10]=> string(40) "destroy 2eb3bd51f9c9cd93eabf5cc2d215e4d9" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 542cf502b0b3b338e7b77b206e8f0350" [3]=> string(52) "current session_id: 542cf502b0b3b338e7b77b206e8f0350" [4]=> string(40) "destroy 542cf502b0b3b338e7b77b206e8f0350" [5]=> string(52) "current session_id: 78819ef19b21d076227c1965d7a6d52a" [6]=> string(40) "destroy 78819ef19b21d076227c1965d7a6d52a" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f3074eddfc810402e849d012997bd762" [10]=> string(40) "destroy f3074eddfc810402e849d012997bd762" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1d8b865d524bcf4930272b9dc53896bb" [3]=> string(52) "current session_id: 1d8b865d524bcf4930272b9dc53896bb" [4]=> string(40) "destroy 1d8b865d524bcf4930272b9dc53896bb" [5]=> string(52) "current session_id: 204ffad35ce7117eb19e745b8f437f9b" [6]=> string(40) "destroy 204ffad35ce7117eb19e745b8f437f9b" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 993e8060a4697b89f889cbe4b85b4948" [10]=> string(40) "destroy 993e8060a4697b89f889cbe4b85b4948" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 385d44684f5de458191709c7d34d2440" [3]=> string(52) "current session_id: 385d44684f5de458191709c7d34d2440" [4]=> string(40) "destroy 385d44684f5de458191709c7d34d2440" [5]=> string(52) "current session_id: 394eda3759b3fa639bf8e8bf19bab3bc" [6]=> string(40) "destroy 394eda3759b3fa639bf8e8bf19bab3bc" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 61da948ff9838d1e0426ddad61e592d7" [10]=> string(40) "destroy 61da948ff9838d1e0426ddad61e592d7" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 253c6217453ea7b0add02d418561fe40" [3]=> string(52) "current session_id: 253c6217453ea7b0add02d418561fe40" [4]=> string(40) "destroy 253c6217453ea7b0add02d418561fe40" [5]=> string(52) "current session_id: 69080e6f7a9a8fe54f391fcfc03ddce9" [6]=> string(40) "destroy 69080e6f7a9a8fe54f391fcfc03ddce9" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e82d26adb3c414765a37b5be2047d978" [10]=> string(40) "destroy e82d26adb3c414765a37b5be2047d978" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7baf3d60d6d56cf341dd527b1371c0bd" [3]=> string(52) "current session_id: 7baf3d60d6d56cf341dd527b1371c0bd" [4]=> string(40) "destroy 7baf3d60d6d56cf341dd527b1371c0bd" [5]=> string(52) "current session_id: f779f459c2e8efdf109ead5bc2ecf741" [6]=> string(40) "destroy f779f459c2e8efdf109ead5bc2ecf741" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read ee9332768400d86635e4d5e8765306f6" [10]=> string(40) "destroy ee9332768400d86635e4d5e8765306f6" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 51366c152f993b3899505f27b5929c67" [3]=> string(52) "current session_id: 51366c152f993b3899505f27b5929c67" [4]=> string(40) "destroy 51366c152f993b3899505f27b5929c67" [5]=> string(52) "current session_id: 52dad2946a1aeea261672746493f7871" [6]=> string(40) "destroy 52dad2946a1aeea261672746493f7871" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 87123a1b35728eef54e9896e219af44e" [10]=> string(40) "destroy 87123a1b35728eef54e9896e219af44e" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7ebcda131ef781250160ef4b986f05e7" [3]=> string(52) "current session_id: 7ebcda131ef781250160ef4b986f05e7" [4]=> string(40) "destroy 7ebcda131ef781250160ef4b986f05e7" [5]=> string(52) "current session_id: 779941b98c2bb1e3ba43d130d08afcfd" [6]=> string(40) "destroy 779941b98c2bb1e3ba43d130d08afcfd" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1eb2877cca98aa82851a46323fae2c53" [10]=> string(40) "destroy 1eb2877cca98aa82851a46323fae2c53" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3d73166fe4dae68362db1510fd32c1f3" [3]=> string(52) "current session_id: 3d73166fe4dae68362db1510fd32c1f3" [4]=> string(40) "destroy 3d73166fe4dae68362db1510fd32c1f3" [5]=> string(52) "current session_id: d852a24e24a4aac3e17adee7b387477c" [6]=> string(40) "destroy d852a24e24a4aac3e17adee7b387477c" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1c543b33b89cb932b8bcc99113d41429" [10]=> string(40) "destroy 1c543b33b89cb932b8bcc99113d41429" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1a82e94491d4a12086fd90105673e5ed" [3]=> string(52) "current session_id: 1a82e94491d4a12086fd90105673e5ed" [4]=> string(40) "destroy 1a82e94491d4a12086fd90105673e5ed" [5]=> string(52) "current session_id: 2ef6157456c2856671f2a020386603b3" [6]=> string(40) "destroy 2ef6157456c2856671f2a020386603b3" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0e6cf551391fc2311124349fe3f6cd5c" [10]=> string(40) "destroy 0e6cf551391fc2311124349fe3f6cd5c" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6760048fb92bf83ed2104731176b3027" [3]=> string(52) "current session_id: 6760048fb92bf83ed2104731176b3027" [4]=> string(40) "destroy 6760048fb92bf83ed2104731176b3027" [5]=> string(52) "current session_id: 6ef17c7ad0b17f9429b5215a03aedbf2" [6]=> string(40) "destroy 6ef17c7ad0b17f9429b5215a03aedbf2" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 564920e7ee7b2916a1d51b95c2a26a92" [10]=> string(40) "destroy 564920e7ee7b2916a1d51b95c2a26a92" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 01a12f9e7869957cc63c190a37ff0ba7" [3]=> string(52) "current session_id: 01a12f9e7869957cc63c190a37ff0ba7" [4]=> string(40) "destroy 01a12f9e7869957cc63c190a37ff0ba7" [5]=> string(52) "current session_id: 9204010b8b7fe21a6dae724b6afee27f" [6]=> string(40) "destroy 9204010b8b7fe21a6dae724b6afee27f" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read fa929bc67e57190804c738260ba8fe5b" [10]=> string(40) "destroy fa929bc67e57190804c738260ba8fe5b" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4ba906236e7d9ebccfd8ee5650183daf" [3]=> string(52) "current session_id: 4ba906236e7d9ebccfd8ee5650183daf" [4]=> string(40) "destroy 4ba906236e7d9ebccfd8ee5650183daf" [5]=> string(52) "current session_id: 020d457ec27ce88629ca606a17036b04" [6]=> string(40) "destroy 020d457ec27ce88629ca606a17036b04" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 97d1c985ae3d91d71b276a92f04b6139" [10]=> string(40) "destroy 97d1c985ae3d91d71b276a92f04b6139" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a27c708d3fb8f2b7526b6abb240316e7" [3]=> string(52) "current session_id: a27c708d3fb8f2b7526b6abb240316e7" [4]=> string(40) "destroy a27c708d3fb8f2b7526b6abb240316e7" [5]=> string(52) "current session_id: 78c1cb648e1c71a70baa0d60a52e48bd" [6]=> string(40) "destroy 78c1cb648e1c71a70baa0d60a52e48bd" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 77ae25c75d90816087a733bf23986025" [10]=> string(40) "destroy 77ae25c75d90816087a733bf23986025" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 47adb79f148560fc66f90913c1a8f1ce" [3]=> string(52) "current session_id: 47adb79f148560fc66f90913c1a8f1ce" [4]=> string(40) "destroy 47adb79f148560fc66f90913c1a8f1ce" [5]=> string(52) "current session_id: 4232c54ac65bf1eb3a510732056bf63b" [6]=> string(40) "destroy 4232c54ac65bf1eb3a510732056bf63b" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 81038cc16b4b8d57c1b45939aec64000" [10]=> string(40) "destroy 81038cc16b4b8d57c1b45939aec64000" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 32e0318ce6f2e54e77364e7b6b1d8449" [3]=> string(52) "current session_id: 32e0318ce6f2e54e77364e7b6b1d8449" [4]=> string(40) "destroy 32e0318ce6f2e54e77364e7b6b1d8449" [5]=> string(52) "current session_id: 83b022d3aad006f82642333d03fd44b7" [6]=> string(40) "destroy 83b022d3aad006f82642333d03fd44b7" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 077339cd78abad5d160ec01e3c0a639f" [10]=> string(40) "destroy 077339cd78abad5d160ec01e3c0a639f" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 268989e0dc43ee1d9efb734baa7189cc" [3]=> string(52) "current session_id: 268989e0dc43ee1d9efb734baa7189cc" [4]=> string(40) "destroy 268989e0dc43ee1d9efb734baa7189cc" [5]=> string(52) "current session_id: 3401f08db9a53d4b0b4d8b63b404f6a7" [6]=> string(40) "destroy 3401f08db9a53d4b0b4d8b63b404f6a7" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1d043a0a1c6b054a1d244da8b83a4960" [10]=> string(40) "destroy 1d043a0a1c6b054a1d244da8b83a4960" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5da1d30347f25ba1ca5a9048bf357302" [3]=> string(52) "current session_id: 5da1d30347f25ba1ca5a9048bf357302" [4]=> string(40) "destroy 5da1d30347f25ba1ca5a9048bf357302" [5]=> string(52) "current session_id: 838802b5fa329ed90511a0b7e69f6331" [6]=> string(40) "destroy 838802b5fa329ed90511a0b7e69f6331" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 98e2effc9921f9af76438ccd4aa43054" [10]=> string(40) "destroy 98e2effc9921f9af76438ccd4aa43054" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 398faeec100485d98d99acfaaba4d14b" [3]=> string(52) "current session_id: 398faeec100485d98d99acfaaba4d14b" [4]=> string(40) "destroy 398faeec100485d98d99acfaaba4d14b" [5]=> string(52) "current session_id: 9cb87d298d3055c5f143d456642aaa96" [6]=> string(40) "destroy 9cb87d298d3055c5f143d456642aaa96" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read c3607eef7a2f00be1c4d493739759ab7" [10]=> string(40) "destroy c3607eef7a2f00be1c4d493739759ab7" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(19) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ddd587879350b4a0212daf08b73a09db" [3]=> string(52) "current session_id: ddd587879350b4a0212daf08b73a09db" [4]=> string(40) "destroy ddd587879350b4a0212daf08b73a09db" [5]=> string(52) "current session_id: 79687b65d0be26498a687a975ed78dcc" [6]=> string(40) "destroy 79687b65d0be26498a687a975ed78dcc" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4bcc08ef66ff425151c2aad9e924e08b" [10]=> string(40) "destroy 4bcc08ef66ff425151c2aad9e924e08b" [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(7) "gc 1440" [17]=> string(42) "write explicit-session-id: john|s:3:"doe";" [18]=> string(5) "close" }
Output for 5.4.29
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6f3a475b57e6c9ebdbcf449214b1d1a4" [3]=> string(52) "current session_id: 6f3a475b57e6c9ebdbcf449214b1d1a4" [4]=> string(40) "destroy 6f3a475b57e6c9ebdbcf449214b1d1a4" [5]=> string(52) "current session_id: 6923d17b90f2e3e3b783dd2724d16fad" [6]=> string(40) "destroy 6923d17b90f2e3e3b783dd2724d16fad" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read fedf5ffdd4d8da13fe529bde472aa03a" [10]=> string(40) "destroy fedf5ffdd4d8da13fe529bde472aa03a" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6824cfb9525d5223348bc2a5a4783c95" [3]=> string(52) "current session_id: 6824cfb9525d5223348bc2a5a4783c95" [4]=> string(40) "destroy 6824cfb9525d5223348bc2a5a4783c95" [5]=> string(52) "current session_id: 13ffb7f3b3de1c78d090f978f4b60066" [6]=> string(40) "destroy 13ffb7f3b3de1c78d090f978f4b60066" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d35c9fa963f552d5dc4d7123b3035330" [10]=> string(40) "destroy d35c9fa963f552d5dc4d7123b3035330" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e817c7f5cca1176cf187fd7eacd8a56a" [3]=> string(52) "current session_id: e817c7f5cca1176cf187fd7eacd8a56a" [4]=> string(40) "destroy e817c7f5cca1176cf187fd7eacd8a56a" [5]=> string(52) "current session_id: 1526d5b770f40f23c6737b1af0648bc3" [6]=> string(40) "destroy 1526d5b770f40f23c6737b1af0648bc3" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3f70eb6a78ef1a98fe8d8459f8524349" [10]=> string(40) "destroy 3f70eb6a78ef1a98fe8d8459f8524349" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 759771929e394a8558999f7406b1fdb2" [3]=> string(52) "current session_id: 759771929e394a8558999f7406b1fdb2" [4]=> string(40) "destroy 759771929e394a8558999f7406b1fdb2" [5]=> string(52) "current session_id: c46cc6af266ca238bde9748f9db8405d" [6]=> string(40) "destroy c46cc6af266ca238bde9748f9db8405d" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 786fc74c8380c939b364f37bf0cbc5f8" [10]=> string(40) "destroy 786fc74c8380c939b364f37bf0cbc5f8" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 79fb9257b52d61af09aeeef9d606ea72" [3]=> string(52) "current session_id: 79fb9257b52d61af09aeeef9d606ea72" [4]=> string(40) "destroy 79fb9257b52d61af09aeeef9d606ea72" [5]=> string(52) "current session_id: c763242e5771f50d1900512cd15db025" [6]=> string(40) "destroy c763242e5771f50d1900512cd15db025" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read eb5e36ae98431f515d65265f81d8142c" [10]=> string(40) "destroy eb5e36ae98431f515d65265f81d8142c" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 419fcb9b9567e986f98d95ef2dfa3b3c" [3]=> string(52) "current session_id: 419fcb9b9567e986f98d95ef2dfa3b3c" [4]=> string(40) "destroy 419fcb9b9567e986f98d95ef2dfa3b3c" [5]=> string(52) "current session_id: 6a5d58bb6ef68e77d2325a01c850836f" [6]=> string(40) "destroy 6a5d58bb6ef68e77d2325a01c850836f" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 822a81902db6ca5eb038e25fee75ffb8" [10]=> string(40) "destroy 822a81902db6ca5eb038e25fee75ffb8" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cde09a9a26890c40e4cd30c58f934e28" [3]=> string(52) "current session_id: cde09a9a26890c40e4cd30c58f934e28" [4]=> string(40) "destroy cde09a9a26890c40e4cd30c58f934e28" [5]=> string(52) "current session_id: 301a1de59d1ee053d14dad8ede961f27" [6]=> string(40) "destroy 301a1de59d1ee053d14dad8ede961f27" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0ba9f98fcea16190aef15837ad2e6ecf" [10]=> string(40) "destroy 0ba9f98fcea16190aef15837ad2e6ecf" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e1faf1c8b666d9cf18c783ee95d73ac9" [3]=> string(52) "current session_id: e1faf1c8b666d9cf18c783ee95d73ac9" [4]=> string(40) "destroy e1faf1c8b666d9cf18c783ee95d73ac9" [5]=> string(52) "current session_id: c20fbe39bd6eed94d7120094626e4ebe" [6]=> string(40) "destroy c20fbe39bd6eed94d7120094626e4ebe" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 21d43068bb6eaadf3a39a795a9d457c3" [10]=> string(40) "destroy 21d43068bb6eaadf3a39a795a9d457c3" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d8a0cfcb0bd6bbb6279da82186f95df2" [3]=> string(52) "current session_id: d8a0cfcb0bd6bbb6279da82186f95df2" [4]=> string(40) "destroy d8a0cfcb0bd6bbb6279da82186f95df2" [5]=> string(52) "current session_id: ad30459b1184ce6d32a22d2b2ff0c8f9" [6]=> string(40) "destroy ad30459b1184ce6d32a22d2b2ff0c8f9" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 003f6dea5906dfe23a388e1fb42dbda3" [10]=> string(40) "destroy 003f6dea5906dfe23a388e1fb42dbda3" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3a345cbf8394d31a22acdd20d6dc8d72" [3]=> string(52) "current session_id: 3a345cbf8394d31a22acdd20d6dc8d72" [4]=> string(40) "destroy 3a345cbf8394d31a22acdd20d6dc8d72" [5]=> string(52) "current session_id: b347df394113029c21440c7e00c5251c" [6]=> string(40) "destroy b347df394113029c21440c7e00c5251c" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 7427079dd82ee001d1cc84fcb1f0a261" [10]=> string(40) "destroy 7427079dd82ee001d1cc84fcb1f0a261" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d36df1eaa434b5d80d02ed8980c4611f" [3]=> string(52) "current session_id: d36df1eaa434b5d80d02ed8980c4611f" [4]=> string(40) "destroy d36df1eaa434b5d80d02ed8980c4611f" [5]=> string(52) "current session_id: 97cb5381c0b2a3be9bea6005f5dd28d7" [6]=> string(40) "destroy 97cb5381c0b2a3be9bea6005f5dd28d7" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2c7a39d173196bab9afb53873189f316" [10]=> string(40) "destroy 2c7a39d173196bab9afb53873189f316" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3a5943d13853c982d776426cf3df995d" [3]=> string(52) "current session_id: 3a5943d13853c982d776426cf3df995d" [4]=> string(40) "destroy 3a5943d13853c982d776426cf3df995d" [5]=> string(52) "current session_id: 8348321e5c5aeaa64b5e3a14c05c30b4" [6]=> string(40) "destroy 8348321e5c5aeaa64b5e3a14c05c30b4" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 7cf2ea0a6966439a5e13a1c437e7edb5" [10]=> string(40) "destroy 7cf2ea0a6966439a5e13a1c437e7edb5" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read db8d257b7425788e2767fce6f8ea45c1" [3]=> string(52) "current session_id: db8d257b7425788e2767fce6f8ea45c1" [4]=> string(40) "destroy db8d257b7425788e2767fce6f8ea45c1" [5]=> string(52) "current session_id: c30dc0aac965ba7766abd3e3fbc1516d" [6]=> string(40) "destroy c30dc0aac965ba7766abd3e3fbc1516d" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 6e1cb4eff42ee07b5e4cb94a7a6738e8" [10]=> string(40) "destroy 6e1cb4eff42ee07b5e4cb94a7a6738e8" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4a13357a6007b64303d3838e63a16a0a" [3]=> string(52) "current session_id: 4a13357a6007b64303d3838e63a16a0a" [4]=> string(40) "destroy 4a13357a6007b64303d3838e63a16a0a" [5]=> string(52) "current session_id: 3cc9d9eb7931657b4b7bb61d2f7c4f3f" [6]=> string(40) "destroy 3cc9d9eb7931657b4b7bb61d2f7c4f3f" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f0d7b512ddc4fd9682ca93c2fec530de" [10]=> string(40) "destroy f0d7b512ddc4fd9682ca93c2fec530de" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 88e9cf8b4d4d9839cc21facd072a2ce0" [3]=> string(52) "current session_id: 88e9cf8b4d4d9839cc21facd072a2ce0" [4]=> string(40) "destroy 88e9cf8b4d4d9839cc21facd072a2ce0" [5]=> string(52) "current session_id: d78fccc24112d6406868ba7de69c0acd" [6]=> string(40) "destroy d78fccc24112d6406868ba7de69c0acd" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0fa060f3780e844a981b3f4107390388" [10]=> string(40) "destroy 0fa060f3780e844a981b3f4107390388" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 83e39b3d4eab49f7fdc869b46bb31449" [3]=> string(52) "current session_id: 83e39b3d4eab49f7fdc869b46bb31449" [4]=> string(40) "destroy 83e39b3d4eab49f7fdc869b46bb31449" [5]=> string(52) "current session_id: 4e5e59e00c1fd43b1d2a48c17ceaaef7" [6]=> string(40) "destroy 4e5e59e00c1fd43b1d2a48c17ceaaef7" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 39fd3f88ea721a4ab6d78d362eab790b" [10]=> string(40) "destroy 39fd3f88ea721a4ab6d78d362eab790b" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0387fa719624dee613ab5d4086b962b4" [3]=> string(52) "current session_id: 0387fa719624dee613ab5d4086b962b4" [4]=> string(40) "destroy 0387fa719624dee613ab5d4086b962b4" [5]=> string(52) "current session_id: be4cc8a7536214673652867772035e72" [6]=> string(40) "destroy be4cc8a7536214673652867772035e72" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3649ab31570247063e2fe39bab312bb8" [10]=> string(40) "destroy 3649ab31570247063e2fe39bab312bb8" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e6bb98f3e730e54521b22ecb09545110" [3]=> string(52) "current session_id: e6bb98f3e730e54521b22ecb09545110" [4]=> string(40) "destroy e6bb98f3e730e54521b22ecb09545110" [5]=> string(52) "current session_id: bb03ba0df81d853d4813fba18c23ee39" [6]=> string(40) "destroy bb03ba0df81d853d4813fba18c23ee39" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 01a9c822a2b358962577fcce4c9ca1ef" [10]=> string(40) "destroy 01a9c822a2b358962577fcce4c9ca1ef" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6a50621f1317dec452952a117ca55e53" [3]=> string(52) "current session_id: 6a50621f1317dec452952a117ca55e53" [4]=> string(40) "destroy 6a50621f1317dec452952a117ca55e53" [5]=> string(52) "current session_id: 62ef47d77274ec149c15b3c0870e1025" [6]=> string(40) "destroy 62ef47d77274ec149c15b3c0870e1025" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2c7ea0b28e05023413c5addfadd78045" [10]=> string(40) "destroy 2c7ea0b28e05023413c5addfadd78045" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b325914a9666996f7270680372c95f11" [3]=> string(52) "current session_id: b325914a9666996f7270680372c95f11" [4]=> string(40) "destroy b325914a9666996f7270680372c95f11" [5]=> string(52) "current session_id: 3b77b8ae44301c1b475d4c80dfa728ab" [6]=> string(40) "destroy 3b77b8ae44301c1b475d4c80dfa728ab" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 88f87282925a87c86932982b74ae04e0" [10]=> string(40) "destroy 88f87282925a87c86932982b74ae04e0" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(20) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 61ba1f57eb4e66fbd9cbf709a216f81c" [3]=> string(7) "gc 1440" [4]=> string(52) "current session_id: 61ba1f57eb4e66fbd9cbf709a216f81c" [5]=> string(40) "destroy 61ba1f57eb4e66fbd9cbf709a216f81c" [6]=> string(52) "current session_id: f8199c72ac009263b26fa92ff2d1c937" [7]=> string(40) "destroy f8199c72ac009263b26fa92ff2d1c937" [8]=> string(5) "close" [9]=> string(14) "open PHPSESSID" [10]=> string(37) "read 227be61113401f19803046b9588a45ba" [11]=> string(7) "gc 1440" [12]=> string(40) "destroy 227be61113401f19803046b9588a45ba" [13]=> string(5) "close" [14]=> string(9) "array ( )" [15]=> string(22) "current session_id: ''" [16]=> string(14) "open PHPSESSID" [17]=> string(24) "read explicit-session-id" [18]=> string(42) "write explicit-session-id: john|s:3:"doe";" [19]=> string(5) "close" }
Output for 5.4.8
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 15e2dc74cc8dd92ceff9e5df3387e059" [3]=> string(52) "current session_id: 15e2dc74cc8dd92ceff9e5df3387e059" [4]=> string(40) "destroy 15e2dc74cc8dd92ceff9e5df3387e059" [5]=> string(52) "current session_id: 5235c1de617a31fb697d84f873cbf1a1" [6]=> string(40) "destroy 5235c1de617a31fb697d84f873cbf1a1" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 744443b3e79e03e8a8749620a0dec106" [10]=> string(40) "destroy 744443b3e79e03e8a8749620a0dec106" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4f91d5d9a31556aae67a2383c279ca45" [3]=> string(52) "current session_id: 4f91d5d9a31556aae67a2383c279ca45" [4]=> string(40) "destroy 4f91d5d9a31556aae67a2383c279ca45" [5]=> string(52) "current session_id: 1c579a6acaab4ba2e0e6825de88fcee7" [6]=> string(40) "destroy 1c579a6acaab4ba2e0e6825de88fcee7" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d32219dcbed46c934d9c3ff896cbadb7" [10]=> string(40) "destroy d32219dcbed46c934d9c3ff896cbadb7" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 886a0c13ac9dc03e08cf980c7a752a2d" [3]=> string(52) "current session_id: 886a0c13ac9dc03e08cf980c7a752a2d" [4]=> string(40) "destroy 886a0c13ac9dc03e08cf980c7a752a2d" [5]=> string(52) "current session_id: eb0bdcf3b7391673269528eb24422e96" [6]=> string(40) "destroy eb0bdcf3b7391673269528eb24422e96" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e4492538ff2a5263b35eeb15a70cd963" [10]=> string(40) "destroy e4492538ff2a5263b35eeb15a70cd963" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read aca2557a64589822b48fa7b07df4d5f5" [3]=> string(52) "current session_id: aca2557a64589822b48fa7b07df4d5f5" [4]=> string(40) "destroy aca2557a64589822b48fa7b07df4d5f5" [5]=> string(52) "current session_id: 12435471135a4775e97dad7ba2c61b73" [6]=> string(40) "destroy 12435471135a4775e97dad7ba2c61b73" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 85ab5c9f903d511f011422f4b4088aad" [10]=> string(40) "destroy 85ab5c9f903d511f011422f4b4088aad" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4aa9cb4eeee56ddf5b2d29e86d6eda9d" [3]=> string(52) "current session_id: 4aa9cb4eeee56ddf5b2d29e86d6eda9d" [4]=> string(40) "destroy 4aa9cb4eeee56ddf5b2d29e86d6eda9d" [5]=> string(52) "current session_id: 56c74a6df7fbc528349eb998e8366562" [6]=> string(40) "destroy 56c74a6df7fbc528349eb998e8366562" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read c2d8f8cf3e87aff57d890626d2c137bf" [10]=> string(40) "destroy c2d8f8cf3e87aff57d890626d2c137bf" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1513696e37320983e2960c09e88a0a9f" [3]=> string(52) "current session_id: 1513696e37320983e2960c09e88a0a9f" [4]=> string(40) "destroy 1513696e37320983e2960c09e88a0a9f" [5]=> string(52) "current session_id: 9287c4e6838aafa10f742164d2afe439" [6]=> string(40) "destroy 9287c4e6838aafa10f742164d2afe439" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a636103dc31d0f84a77d985b3620a95d" [10]=> string(40) "destroy a636103dc31d0f84a77d985b3620a95d" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 76ac5c93eeedbd19253ae6cb40123aa3" [3]=> string(52) "current session_id: 76ac5c93eeedbd19253ae6cb40123aa3" [4]=> string(40) "destroy 76ac5c93eeedbd19253ae6cb40123aa3" [5]=> string(52) "current session_id: 889ce4892cbe2db08f5dfb1d2634b828" [6]=> string(40) "destroy 889ce4892cbe2db08f5dfb1d2634b828" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a2cc93d0d37d768ff46184c2dd87f545" [10]=> string(40) "destroy a2cc93d0d37d768ff46184c2dd87f545" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d385ca586c6f87c502591e957186b3da" [3]=> string(52) "current session_id: d385ca586c6f87c502591e957186b3da" [4]=> string(40) "destroy d385ca586c6f87c502591e957186b3da" [5]=> string(52) "current session_id: bca197d8075b7ea0a75fe5273deccc0e" [6]=> string(40) "destroy bca197d8075b7ea0a75fe5273deccc0e" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 77c9de6d547be657af61934b00beda33" [10]=> string(40) "destroy 77c9de6d547be657af61934b00beda33" [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
Warning: session_destroy(): Trying to destroy uninitialized session in /in/EglaO on line 59 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 62 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/EglaO:59) in /in/EglaO on line 69 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/EglaO:59) in /in/EglaO on line 69 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 96431b9000298b816933f30d8e5cd172" [3]=> string(52) "current session_id: 96431b9000298b816933f30d8e5cd172" [4]=> string(40) "destroy 96431b9000298b816933f30d8e5cd172" [5]=> string(52) "current session_id: ad86da9e3b46d881789a317bb6bcf757" [6]=> string(40) "destroy ad86da9e3b46d881789a317bb6bcf757" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 308b8810b6e01aa568658288d074d5e4" [10]=> string(40) "destroy 308b8810b6e01aa568658288d074d5e4" [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/EglaO 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/EglaO on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/EglaO 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/EglaO on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/EglaO 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/EglaO 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/EglaO on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/EglaO on line 4
Process exited with code 255.

preferences:
240.72 ms | 401 KiB | 359 Q