3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MySessionHandler implements \SessionHandlerInterface { public $messages = array(); public function open($savePath, $sessionName) { $this->messages[] = 'open ' . $sessionName; } public function close() { $this->messages[] = 'close'; } public function read($id) { $this->messages[] = 'read ' . $id; } public function write($id, $data) { $this->messages[] = 'write ' . $id . ': ' . $data; } public function destroy($id) { $this->messages[] = 'destroy ' . $id; } public function gc($maxlifetime) { $this->messages[] = 'gc ' . var_export($maxlifetime, true); } public function __destruct() { var_dump($this->messages); } } $handler = new MySessionHandler(); session_set_save_handler($handler, true); $handler->messages[] = 'isset($_SESSION): ' . var_export(isset($_SESSION), true); $_SESSION['before'] = 'start'; session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = 'current session_id: ' . session_id(); session_regenerate_id(true); $handler->messages[] = 'current session_id: ' . session_id(); session_write_close(); var_dump(session_id()); session_start(); session_destroy(); $handler->messages[] = var_export($_SESSION, true); $handler->messages[] = 'current session_id: ' . var_export(session_id(), true); session_id('explicit-session-id'); session_start(); $_SESSION['john'] = 'doe';
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Return type of MySessionHandler::open($savePath, $sessionName) should either be compatible with SessionHandlerInterface::open(string $path, string $name): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/FI32h 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/FI32h 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/FI32h 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/FI32h 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/FI32h 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/FI32h on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/FI32h on line 45 Warning: session_start(): Session cannot be started after headers have already been sent in /in/FI32h on line 50 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/FI32h on line 55 string(0) "" Warning: session_start(): Session cannot be started after headers have already been sent in /in/FI32h on line 61 Warning: session_destroy(): Trying to destroy uninitialized session in /in/FI32h on line 62 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/FI32h on line 67 Warning: session_start(): Session cannot be started after headers have already been sent in /in/FI32h on line 68 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/FI32h:50 Stack trace: #0 /in/FI32h(50): session_start() #1 {main} thrown in /in/FI32h on line 50 array(2) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" }
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: session_start(): Session callback expects true/false return value in /in/FI32h on line 50 Warning: session_start(): Session callback expects true/false return value in /in/FI32h on line 50 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/FI32h on line 50 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/FI32h on line 55 string(0) "" Warning: session_start(): Cannot start session when headers already sent in /in/FI32h on line 61 Warning: session_destroy(): Trying to destroy uninitialized session in /in/FI32h on line 62 Warning: session_id(): Cannot change session id when headers already sent in /in/FI32h on line 67 Warning: session_start(): Cannot start session when headers already sent in /in/FI32h on line 68 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/FI32h on line 50 Warning: session_start(): Session callback expects true/false return value in /in/FI32h on line 50 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/FI32h on line 50
Process exited with code 255.
Output for 7.0.0 - 7.0.33
Warning: session_start(): Session callback expects true/false return value in /in/FI32h on line 50 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/FI32h on line 50 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.40
string(32) "226ba00812b239645e937079860edf90" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4e0780f17a2bc1483ad773e9f61dc3de" [3]=> string(52) "current session_id: 4e0780f17a2bc1483ad773e9f61dc3de" [4]=> string(40) "destroy 4e0780f17a2bc1483ad773e9f61dc3de" [5]=> string(52) "current session_id: 226ba00812b239645e937079860edf90" [6]=> string(54) "write 226ba00812b239645e937079860edf90: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 226ba00812b239645e937079860edf90" [10]=> string(40) "destroy 226ba00812b239645e937079860edf90" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.39
string(32) "1e44b4e2506cfecb3384f9205b5df670" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 728ba4ec5cf6b3ca37c0f0188f34b919" [3]=> string(52) "current session_id: 728ba4ec5cf6b3ca37c0f0188f34b919" [4]=> string(40) "destroy 728ba4ec5cf6b3ca37c0f0188f34b919" [5]=> string(52) "current session_id: 1e44b4e2506cfecb3384f9205b5df670" [6]=> string(54) "write 1e44b4e2506cfecb3384f9205b5df670: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1e44b4e2506cfecb3384f9205b5df670" [10]=> string(40) "destroy 1e44b4e2506cfecb3384f9205b5df670" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.38
string(32) "3f635d33812bae079c3c884042e2a2a6" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ac5c8857384735d2b0525050c6e93eea" [3]=> string(52) "current session_id: ac5c8857384735d2b0525050c6e93eea" [4]=> string(40) "destroy ac5c8857384735d2b0525050c6e93eea" [5]=> string(52) "current session_id: 3f635d33812bae079c3c884042e2a2a6" [6]=> string(54) "write 3f635d33812bae079c3c884042e2a2a6: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3f635d33812bae079c3c884042e2a2a6" [10]=> string(40) "destroy 3f635d33812bae079c3c884042e2a2a6" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.37
string(32) "66c5613949efb2e3fa69876e419393fe" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4796e4f82edbb7d47ef7eb1c2691081b" [3]=> string(52) "current session_id: 4796e4f82edbb7d47ef7eb1c2691081b" [4]=> string(40) "destroy 4796e4f82edbb7d47ef7eb1c2691081b" [5]=> string(52) "current session_id: 66c5613949efb2e3fa69876e419393fe" [6]=> string(54) "write 66c5613949efb2e3fa69876e419393fe: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 66c5613949efb2e3fa69876e419393fe" [10]=> string(40) "destroy 66c5613949efb2e3fa69876e419393fe" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.36
string(32) "d5e156f0e2fb75ce2fb8e2473fce0e8f" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 16e669b8b1004ae07efd35cc162f6e8a" [3]=> string(52) "current session_id: 16e669b8b1004ae07efd35cc162f6e8a" [4]=> string(40) "destroy 16e669b8b1004ae07efd35cc162f6e8a" [5]=> string(52) "current session_id: d5e156f0e2fb75ce2fb8e2473fce0e8f" [6]=> string(54) "write d5e156f0e2fb75ce2fb8e2473fce0e8f: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d5e156f0e2fb75ce2fb8e2473fce0e8f" [10]=> string(40) "destroy d5e156f0e2fb75ce2fb8e2473fce0e8f" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.35
string(32) "4861c78217d8f3b8fef8b8dc7f64da1a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 863574d418c2ef8e8f80d920bacc27d2" [3]=> string(52) "current session_id: 863574d418c2ef8e8f80d920bacc27d2" [4]=> string(40) "destroy 863574d418c2ef8e8f80d920bacc27d2" [5]=> string(52) "current session_id: 4861c78217d8f3b8fef8b8dc7f64da1a" [6]=> string(54) "write 4861c78217d8f3b8fef8b8dc7f64da1a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4861c78217d8f3b8fef8b8dc7f64da1a" [10]=> string(40) "destroy 4861c78217d8f3b8fef8b8dc7f64da1a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.34
string(32) "9f82b7b1aab6d538959eaf5094da2e5e" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 44996b4bff9efe0c76972373259b4872" [3]=> string(52) "current session_id: 44996b4bff9efe0c76972373259b4872" [4]=> string(40) "destroy 44996b4bff9efe0c76972373259b4872" [5]=> string(52) "current session_id: 9f82b7b1aab6d538959eaf5094da2e5e" [6]=> string(54) "write 9f82b7b1aab6d538959eaf5094da2e5e: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9f82b7b1aab6d538959eaf5094da2e5e" [10]=> string(40) "destroy 9f82b7b1aab6d538959eaf5094da2e5e" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.33
string(32) "809225cb07be9056e72a7748f434a8ba" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read be4c207b1868295ba7b345dc4670fcc8" [3]=> string(52) "current session_id: be4c207b1868295ba7b345dc4670fcc8" [4]=> string(40) "destroy be4c207b1868295ba7b345dc4670fcc8" [5]=> string(52) "current session_id: 809225cb07be9056e72a7748f434a8ba" [6]=> string(54) "write 809225cb07be9056e72a7748f434a8ba: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 809225cb07be9056e72a7748f434a8ba" [10]=> string(40) "destroy 809225cb07be9056e72a7748f434a8ba" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.32
string(32) "cd3cda85b77cb65704e2f771ee787693" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f9dc4e0e50f2e9b9da6534d186d8ca27" [3]=> string(52) "current session_id: f9dc4e0e50f2e9b9da6534d186d8ca27" [4]=> string(40) "destroy f9dc4e0e50f2e9b9da6534d186d8ca27" [5]=> string(52) "current session_id: cd3cda85b77cb65704e2f771ee787693" [6]=> string(54) "write cd3cda85b77cb65704e2f771ee787693: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read cd3cda85b77cb65704e2f771ee787693" [10]=> string(40) "destroy cd3cda85b77cb65704e2f771ee787693" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.31
string(32) "fbe7e4a308c1b0325d2b6e3c5523ae10" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bb476ab4c609cdef7efc98f981677285" [3]=> string(52) "current session_id: bb476ab4c609cdef7efc98f981677285" [4]=> string(40) "destroy bb476ab4c609cdef7efc98f981677285" [5]=> string(52) "current session_id: fbe7e4a308c1b0325d2b6e3c5523ae10" [6]=> string(54) "write fbe7e4a308c1b0325d2b6e3c5523ae10: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read fbe7e4a308c1b0325d2b6e3c5523ae10" [10]=> string(40) "destroy fbe7e4a308c1b0325d2b6e3c5523ae10" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.30
string(32) "9f068fbd140dbc5c4e06b104fa7abed2" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e63e8a495b7ce5e6f790d0d17f821155" [3]=> string(52) "current session_id: e63e8a495b7ce5e6f790d0d17f821155" [4]=> string(40) "destroy e63e8a495b7ce5e6f790d0d17f821155" [5]=> string(52) "current session_id: 9f068fbd140dbc5c4e06b104fa7abed2" [6]=> string(54) "write 9f068fbd140dbc5c4e06b104fa7abed2: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9f068fbd140dbc5c4e06b104fa7abed2" [10]=> string(40) "destroy 9f068fbd140dbc5c4e06b104fa7abed2" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.29
string(32) "ca828e82a5944e4a2542bb0d34c269dd" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 41b384352e76596dfb014ac1e36cf177" [3]=> string(52) "current session_id: 41b384352e76596dfb014ac1e36cf177" [4]=> string(40) "destroy 41b384352e76596dfb014ac1e36cf177" [5]=> string(52) "current session_id: ca828e82a5944e4a2542bb0d34c269dd" [6]=> string(54) "write ca828e82a5944e4a2542bb0d34c269dd: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read ca828e82a5944e4a2542bb0d34c269dd" [10]=> string(40) "destroy ca828e82a5944e4a2542bb0d34c269dd" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.28
string(32) "01f2911067ef281b166b775b2b575287" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 20c68015431f1917e2467fd4cde84adc" [3]=> string(52) "current session_id: 20c68015431f1917e2467fd4cde84adc" [4]=> string(40) "destroy 20c68015431f1917e2467fd4cde84adc" [5]=> string(52) "current session_id: 01f2911067ef281b166b775b2b575287" [6]=> string(54) "write 01f2911067ef281b166b775b2b575287: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 01f2911067ef281b166b775b2b575287" [10]=> string(40) "destroy 01f2911067ef281b166b775b2b575287" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.27
string(32) "63d3cd22e8aab254609724df5dd0f5fd" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e655e3d40f31ef3b1bce4d75a0776aac" [3]=> string(52) "current session_id: e655e3d40f31ef3b1bce4d75a0776aac" [4]=> string(40) "destroy e655e3d40f31ef3b1bce4d75a0776aac" [5]=> string(52) "current session_id: 63d3cd22e8aab254609724df5dd0f5fd" [6]=> string(54) "write 63d3cd22e8aab254609724df5dd0f5fd: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 63d3cd22e8aab254609724df5dd0f5fd" [10]=> string(40) "destroy 63d3cd22e8aab254609724df5dd0f5fd" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.26
string(32) "7cdb26e6cabf653952a775eeea125965" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 23314398ee97eedd990ba6989efb3891" [3]=> string(52) "current session_id: 23314398ee97eedd990ba6989efb3891" [4]=> string(40) "destroy 23314398ee97eedd990ba6989efb3891" [5]=> string(52) "current session_id: 7cdb26e6cabf653952a775eeea125965" [6]=> string(54) "write 7cdb26e6cabf653952a775eeea125965: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 7cdb26e6cabf653952a775eeea125965" [10]=> string(40) "destroy 7cdb26e6cabf653952a775eeea125965" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.25
string(32) "05716bea97e177a5272c1e3b8869810c" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 12cea4e1d13f399765ac4d7679615437" [3]=> string(52) "current session_id: 12cea4e1d13f399765ac4d7679615437" [4]=> string(40) "destroy 12cea4e1d13f399765ac4d7679615437" [5]=> string(52) "current session_id: 05716bea97e177a5272c1e3b8869810c" [6]=> string(54) "write 05716bea97e177a5272c1e3b8869810c: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 05716bea97e177a5272c1e3b8869810c" [10]=> string(40) "destroy 05716bea97e177a5272c1e3b8869810c" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.24
string(32) "2394e7e81c0b95d0e2aa49d93edac493" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 25029bf2bd195e29a6bf7e30ab6eab0c" [3]=> string(52) "current session_id: 25029bf2bd195e29a6bf7e30ab6eab0c" [4]=> string(40) "destroy 25029bf2bd195e29a6bf7e30ab6eab0c" [5]=> string(52) "current session_id: 2394e7e81c0b95d0e2aa49d93edac493" [6]=> string(54) "write 2394e7e81c0b95d0e2aa49d93edac493: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2394e7e81c0b95d0e2aa49d93edac493" [10]=> string(40) "destroy 2394e7e81c0b95d0e2aa49d93edac493" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.23
string(32) "c29baf07d5b7b9ef8b3219984f9193aa" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9982b4f23f894387f1087e770aa4cf14" [3]=> string(52) "current session_id: 9982b4f23f894387f1087e770aa4cf14" [4]=> string(40) "destroy 9982b4f23f894387f1087e770aa4cf14" [5]=> string(52) "current session_id: c29baf07d5b7b9ef8b3219984f9193aa" [6]=> string(54) "write c29baf07d5b7b9ef8b3219984f9193aa: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read c29baf07d5b7b9ef8b3219984f9193aa" [10]=> string(40) "destroy c29baf07d5b7b9ef8b3219984f9193aa" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.22
string(32) "945d5fe1a738afca34fe927b5bcae9b3" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a22d8603d1e72e87d968a500b539056f" [3]=> string(52) "current session_id: a22d8603d1e72e87d968a500b539056f" [4]=> string(40) "destroy a22d8603d1e72e87d968a500b539056f" [5]=> string(52) "current session_id: 945d5fe1a738afca34fe927b5bcae9b3" [6]=> string(54) "write 945d5fe1a738afca34fe927b5bcae9b3: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 945d5fe1a738afca34fe927b5bcae9b3" [10]=> string(40) "destroy 945d5fe1a738afca34fe927b5bcae9b3" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.21
string(32) "3f816fb9098fc200eadccfcdc6d19b5d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6a4f8edcdd8b9f16c30fc2b1cdab9f25" [3]=> string(52) "current session_id: 6a4f8edcdd8b9f16c30fc2b1cdab9f25" [4]=> string(40) "destroy 6a4f8edcdd8b9f16c30fc2b1cdab9f25" [5]=> string(52) "current session_id: 3f816fb9098fc200eadccfcdc6d19b5d" [6]=> string(54) "write 3f816fb9098fc200eadccfcdc6d19b5d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3f816fb9098fc200eadccfcdc6d19b5d" [10]=> string(40) "destroy 3f816fb9098fc200eadccfcdc6d19b5d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.20
string(32) "7cfcd9f8264dd972e865984485046c6e" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c0fca9d054297267f60e834e94c16e89" [3]=> string(52) "current session_id: c0fca9d054297267f60e834e94c16e89" [4]=> string(40) "destroy c0fca9d054297267f60e834e94c16e89" [5]=> string(52) "current session_id: 7cfcd9f8264dd972e865984485046c6e" [6]=> string(54) "write 7cfcd9f8264dd972e865984485046c6e: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 7cfcd9f8264dd972e865984485046c6e" [10]=> string(40) "destroy 7cfcd9f8264dd972e865984485046c6e" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.19
string(32) "ab7d446d065282cae693d85f3c555cc1" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read def02206163c8fbba11d1d91aab9627d" [3]=> string(52) "current session_id: def02206163c8fbba11d1d91aab9627d" [4]=> string(40) "destroy def02206163c8fbba11d1d91aab9627d" [5]=> string(52) "current session_id: ab7d446d065282cae693d85f3c555cc1" [6]=> string(54) "write ab7d446d065282cae693d85f3c555cc1: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read ab7d446d065282cae693d85f3c555cc1" [10]=> string(40) "destroy ab7d446d065282cae693d85f3c555cc1" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.18
string(32) "9b8c4a951942c31aa9532f1d84de35fd" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f7007264de74fdf81e870e04f2b44129" [3]=> string(52) "current session_id: f7007264de74fdf81e870e04f2b44129" [4]=> string(40) "destroy f7007264de74fdf81e870e04f2b44129" [5]=> string(52) "current session_id: 9b8c4a951942c31aa9532f1d84de35fd" [6]=> string(54) "write 9b8c4a951942c31aa9532f1d84de35fd: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9b8c4a951942c31aa9532f1d84de35fd" [10]=> string(40) "destroy 9b8c4a951942c31aa9532f1d84de35fd" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.17
string(32) "2669eabc98b4fe2cdf2f661d0ea3d4cc" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a63c0848501bad957b03c9feea610de4" [3]=> string(52) "current session_id: a63c0848501bad957b03c9feea610de4" [4]=> string(40) "destroy a63c0848501bad957b03c9feea610de4" [5]=> string(52) "current session_id: 2669eabc98b4fe2cdf2f661d0ea3d4cc" [6]=> string(54) "write 2669eabc98b4fe2cdf2f661d0ea3d4cc: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2669eabc98b4fe2cdf2f661d0ea3d4cc" [10]=> string(40) "destroy 2669eabc98b4fe2cdf2f661d0ea3d4cc" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.16
string(32) "bae04b2bd90bd736d1dec7fc791e0563" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7f587e59925b0ae334f30e7f439d2b79" [3]=> string(52) "current session_id: 7f587e59925b0ae334f30e7f439d2b79" [4]=> string(40) "destroy 7f587e59925b0ae334f30e7f439d2b79" [5]=> string(52) "current session_id: bae04b2bd90bd736d1dec7fc791e0563" [6]=> string(54) "write bae04b2bd90bd736d1dec7fc791e0563: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read bae04b2bd90bd736d1dec7fc791e0563" [10]=> string(40) "destroy bae04b2bd90bd736d1dec7fc791e0563" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.15
string(32) "1497b04ced3245faa0275263ec362aa6" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6f08d8a6a95bd95ae2e5e948a3c16b23" [3]=> string(52) "current session_id: 6f08d8a6a95bd95ae2e5e948a3c16b23" [4]=> string(40) "destroy 6f08d8a6a95bd95ae2e5e948a3c16b23" [5]=> string(52) "current session_id: 1497b04ced3245faa0275263ec362aa6" [6]=> string(54) "write 1497b04ced3245faa0275263ec362aa6: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1497b04ced3245faa0275263ec362aa6" [10]=> string(40) "destroy 1497b04ced3245faa0275263ec362aa6" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.14
string(32) "216c6d6202592af3e750ff45037e8b3b" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e0221a990f2e3f894199243219bff871" [3]=> string(52) "current session_id: e0221a990f2e3f894199243219bff871" [4]=> string(40) "destroy e0221a990f2e3f894199243219bff871" [5]=> string(52) "current session_id: 216c6d6202592af3e750ff45037e8b3b" [6]=> string(54) "write 216c6d6202592af3e750ff45037e8b3b: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 216c6d6202592af3e750ff45037e8b3b" [10]=> string(40) "destroy 216c6d6202592af3e750ff45037e8b3b" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.13
string(32) "fbd1fc1cdfb9c902584169a276536b89" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9f7b86f012a67e19dfcbd58099fef40f" [3]=> string(52) "current session_id: 9f7b86f012a67e19dfcbd58099fef40f" [4]=> string(40) "destroy 9f7b86f012a67e19dfcbd58099fef40f" [5]=> string(52) "current session_id: fbd1fc1cdfb9c902584169a276536b89" [6]=> string(54) "write fbd1fc1cdfb9c902584169a276536b89: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read fbd1fc1cdfb9c902584169a276536b89" [10]=> string(40) "destroy fbd1fc1cdfb9c902584169a276536b89" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.12
string(32) "e07e1016713cb41c097f0abc0a99b3d3" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a7d9568c139590f2b30ff2dd2758d660" [3]=> string(52) "current session_id: a7d9568c139590f2b30ff2dd2758d660" [4]=> string(40) "destroy a7d9568c139590f2b30ff2dd2758d660" [5]=> string(52) "current session_id: e07e1016713cb41c097f0abc0a99b3d3" [6]=> string(54) "write e07e1016713cb41c097f0abc0a99b3d3: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e07e1016713cb41c097f0abc0a99b3d3" [10]=> string(40) "destroy e07e1016713cb41c097f0abc0a99b3d3" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.11
string(32) "390127da0bc9c3b8d097e9a14bfe2fe9" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 521a9bc9b4f183abffb4b5c3f3b02462" [3]=> string(52) "current session_id: 521a9bc9b4f183abffb4b5c3f3b02462" [4]=> string(40) "destroy 521a9bc9b4f183abffb4b5c3f3b02462" [5]=> string(52) "current session_id: 390127da0bc9c3b8d097e9a14bfe2fe9" [6]=> string(54) "write 390127da0bc9c3b8d097e9a14bfe2fe9: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 390127da0bc9c3b8d097e9a14bfe2fe9" [10]=> string(40) "destroy 390127da0bc9c3b8d097e9a14bfe2fe9" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.10
string(32) "4dcd201a4321c9a9b4b183b1b65039e0" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b380d9b90e859e60803996c1cce59d12" [3]=> string(52) "current session_id: b380d9b90e859e60803996c1cce59d12" [4]=> string(40) "destroy b380d9b90e859e60803996c1cce59d12" [5]=> string(52) "current session_id: 4dcd201a4321c9a9b4b183b1b65039e0" [6]=> string(54) "write 4dcd201a4321c9a9b4b183b1b65039e0: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4dcd201a4321c9a9b4b183b1b65039e0" [10]=> string(40) "destroy 4dcd201a4321c9a9b4b183b1b65039e0" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.9
string(32) "d8c93915b6832dfa5d222d5c77d280fe" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 94e249f693426b58ec0ba95e2fe3e2d4" [3]=> string(52) "current session_id: 94e249f693426b58ec0ba95e2fe3e2d4" [4]=> string(40) "destroy 94e249f693426b58ec0ba95e2fe3e2d4" [5]=> string(52) "current session_id: d8c93915b6832dfa5d222d5c77d280fe" [6]=> string(54) "write d8c93915b6832dfa5d222d5c77d280fe: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d8c93915b6832dfa5d222d5c77d280fe" [10]=> string(40) "destroy d8c93915b6832dfa5d222d5c77d280fe" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.8
string(32) "f84bd2f9a0e56d4ecaadad64792a3d0a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 588c5c811efc83afe046aed37a2823e1" [3]=> string(52) "current session_id: 588c5c811efc83afe046aed37a2823e1" [4]=> string(40) "destroy 588c5c811efc83afe046aed37a2823e1" [5]=> string(52) "current session_id: f84bd2f9a0e56d4ecaadad64792a3d0a" [6]=> string(54) "write f84bd2f9a0e56d4ecaadad64792a3d0a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f84bd2f9a0e56d4ecaadad64792a3d0a" [10]=> string(40) "destroy f84bd2f9a0e56d4ecaadad64792a3d0a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.7
string(32) "1ef51ea545b72f407be513a2f918c340" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0d4cfd8a49092010534731378bb65023" [3]=> string(52) "current session_id: 0d4cfd8a49092010534731378bb65023" [4]=> string(40) "destroy 0d4cfd8a49092010534731378bb65023" [5]=> string(52) "current session_id: 1ef51ea545b72f407be513a2f918c340" [6]=> string(54) "write 1ef51ea545b72f407be513a2f918c340: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1ef51ea545b72f407be513a2f918c340" [10]=> string(40) "destroy 1ef51ea545b72f407be513a2f918c340" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.6
string(32) "8538b9300461266151666efbcb9c4137" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8134a43a3fb1c83ed62e75bf0d5d41c6" [3]=> string(52) "current session_id: 8134a43a3fb1c83ed62e75bf0d5d41c6" [4]=> string(40) "destroy 8134a43a3fb1c83ed62e75bf0d5d41c6" [5]=> string(52) "current session_id: 8538b9300461266151666efbcb9c4137" [6]=> string(54) "write 8538b9300461266151666efbcb9c4137: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8538b9300461266151666efbcb9c4137" [10]=> string(40) "destroy 8538b9300461266151666efbcb9c4137" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.5
string(32) "cd17862e2ffd073f7953be75ca6a6732" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f060e9825b6c1115c7ee0c2155a2b211" [3]=> string(52) "current session_id: f060e9825b6c1115c7ee0c2155a2b211" [4]=> string(40) "destroy f060e9825b6c1115c7ee0c2155a2b211" [5]=> string(52) "current session_id: cd17862e2ffd073f7953be75ca6a6732" [6]=> string(54) "write cd17862e2ffd073f7953be75ca6a6732: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read cd17862e2ffd073f7953be75ca6a6732" [10]=> string(40) "destroy cd17862e2ffd073f7953be75ca6a6732" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.4
string(32) "3462f0618b48e265cff3c9e93d14b3fd" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1bd0b4b604b14bf3e3133a4c7c168473" [3]=> string(52) "current session_id: 1bd0b4b604b14bf3e3133a4c7c168473" [4]=> string(40) "destroy 1bd0b4b604b14bf3e3133a4c7c168473" [5]=> string(52) "current session_id: 3462f0618b48e265cff3c9e93d14b3fd" [6]=> string(54) "write 3462f0618b48e265cff3c9e93d14b3fd: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3462f0618b48e265cff3c9e93d14b3fd" [10]=> string(40) "destroy 3462f0618b48e265cff3c9e93d14b3fd" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.3
string(32) "07e34cb67f43656e2b1ad53d1c5aa079" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3b78409a1b01751bcd05509fd97a8356" [3]=> string(52) "current session_id: 3b78409a1b01751bcd05509fd97a8356" [4]=> string(40) "destroy 3b78409a1b01751bcd05509fd97a8356" [5]=> string(52) "current session_id: 07e34cb67f43656e2b1ad53d1c5aa079" [6]=> string(54) "write 07e34cb67f43656e2b1ad53d1c5aa079: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 07e34cb67f43656e2b1ad53d1c5aa079" [10]=> string(40) "destroy 07e34cb67f43656e2b1ad53d1c5aa079" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.2
string(32) "66ccfbd2a67b08f225c3251e93298ba7" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ada1ebd197f3d4b642619eb2342b43c2" [3]=> string(52) "current session_id: ada1ebd197f3d4b642619eb2342b43c2" [4]=> string(40) "destroy ada1ebd197f3d4b642619eb2342b43c2" [5]=> string(52) "current session_id: 66ccfbd2a67b08f225c3251e93298ba7" [6]=> string(54) "write 66ccfbd2a67b08f225c3251e93298ba7: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 66ccfbd2a67b08f225c3251e93298ba7" [10]=> string(40) "destroy 66ccfbd2a67b08f225c3251e93298ba7" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.1
string(32) "a42473029dad306804ca2b9a07f18ebe" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cc639f3d91cd559e621d4ff0a250b2fa" [3]=> string(52) "current session_id: cc639f3d91cd559e621d4ff0a250b2fa" [4]=> string(40) "destroy cc639f3d91cd559e621d4ff0a250b2fa" [5]=> string(52) "current session_id: a42473029dad306804ca2b9a07f18ebe" [6]=> string(54) "write a42473029dad306804ca2b9a07f18ebe: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a42473029dad306804ca2b9a07f18ebe" [10]=> string(40) "destroy a42473029dad306804ca2b9a07f18ebe" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.0
string(32) "094bf7f6732d1deab17d1ae782cdc713" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6709edcae6f618ad085e46c18373f29e" [3]=> string(52) "current session_id: 6709edcae6f618ad085e46c18373f29e" [4]=> string(40) "destroy 6709edcae6f618ad085e46c18373f29e" [5]=> string(52) "current session_id: 094bf7f6732d1deab17d1ae782cdc713" [6]=> string(54) "write 094bf7f6732d1deab17d1ae782cdc713: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 094bf7f6732d1deab17d1ae782cdc713" [10]=> string(40) "destroy 094bf7f6732d1deab17d1ae782cdc713" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.38
string(32) "da49e50fde631d11f39d2dc475cb1ef0" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 563fbb62a0de8d08a33ff920691cca5c" [3]=> string(52) "current session_id: 563fbb62a0de8d08a33ff920691cca5c" [4]=> string(40) "destroy 563fbb62a0de8d08a33ff920691cca5c" [5]=> string(52) "current session_id: da49e50fde631d11f39d2dc475cb1ef0" [6]=> string(54) "write da49e50fde631d11f39d2dc475cb1ef0: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read da49e50fde631d11f39d2dc475cb1ef0" [10]=> string(40) "destroy da49e50fde631d11f39d2dc475cb1ef0" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.37
string(32) "9214096259a217a46700f75e3518ebaa" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 63f4343d837aa61259399c54e9aa268d" [3]=> string(52) "current session_id: 63f4343d837aa61259399c54e9aa268d" [4]=> string(40) "destroy 63f4343d837aa61259399c54e9aa268d" [5]=> string(52) "current session_id: 9214096259a217a46700f75e3518ebaa" [6]=> string(54) "write 9214096259a217a46700f75e3518ebaa: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 9214096259a217a46700f75e3518ebaa" [10]=> string(40) "destroy 9214096259a217a46700f75e3518ebaa" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.36
string(32) "418c1a85f85d0e95ac9e64a0389c3e07" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a4ccea29bae578f06d6879461662f0a7" [3]=> string(52) "current session_id: a4ccea29bae578f06d6879461662f0a7" [4]=> string(40) "destroy a4ccea29bae578f06d6879461662f0a7" [5]=> string(52) "current session_id: 418c1a85f85d0e95ac9e64a0389c3e07" [6]=> string(54) "write 418c1a85f85d0e95ac9e64a0389c3e07: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 418c1a85f85d0e95ac9e64a0389c3e07" [10]=> string(40) "destroy 418c1a85f85d0e95ac9e64a0389c3e07" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.35
string(32) "50331b60515c293f58e0a0b88f62cfd3" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5feb68e5171eab960c7d362d93debfb1" [3]=> string(52) "current session_id: 5feb68e5171eab960c7d362d93debfb1" [4]=> string(40) "destroy 5feb68e5171eab960c7d362d93debfb1" [5]=> string(52) "current session_id: 50331b60515c293f58e0a0b88f62cfd3" [6]=> string(54) "write 50331b60515c293f58e0a0b88f62cfd3: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 50331b60515c293f58e0a0b88f62cfd3" [10]=> string(40) "destroy 50331b60515c293f58e0a0b88f62cfd3" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.34
string(32) "6e30f4f69618e2eea16624733f93f151" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read eb78ef77827ddf07478fb23fb9631c8d" [3]=> string(52) "current session_id: eb78ef77827ddf07478fb23fb9631c8d" [4]=> string(40) "destroy eb78ef77827ddf07478fb23fb9631c8d" [5]=> string(52) "current session_id: 6e30f4f69618e2eea16624733f93f151" [6]=> string(54) "write 6e30f4f69618e2eea16624733f93f151: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 6e30f4f69618e2eea16624733f93f151" [10]=> string(40) "destroy 6e30f4f69618e2eea16624733f93f151" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.33
string(32) "cd51fa2a803c1700e51bf569a06fc887" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e86b5f3e6677604da3cee186071a662a" [3]=> string(52) "current session_id: e86b5f3e6677604da3cee186071a662a" [4]=> string(40) "destroy e86b5f3e6677604da3cee186071a662a" [5]=> string(52) "current session_id: cd51fa2a803c1700e51bf569a06fc887" [6]=> string(54) "write cd51fa2a803c1700e51bf569a06fc887: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read cd51fa2a803c1700e51bf569a06fc887" [10]=> string(40) "destroy cd51fa2a803c1700e51bf569a06fc887" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.32
string(32) "24ec9c9a2510fb8f4972f15cfe310fc0" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a8df296e51712ca7ab415ebd12d8a4ec" [3]=> string(52) "current session_id: a8df296e51712ca7ab415ebd12d8a4ec" [4]=> string(40) "destroy a8df296e51712ca7ab415ebd12d8a4ec" [5]=> string(52) "current session_id: 24ec9c9a2510fb8f4972f15cfe310fc0" [6]=> string(54) "write 24ec9c9a2510fb8f4972f15cfe310fc0: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 24ec9c9a2510fb8f4972f15cfe310fc0" [10]=> string(40) "destroy 24ec9c9a2510fb8f4972f15cfe310fc0" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.31
string(32) "db0f97357f672f41ac3c16b7775bcbd7" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4ad0a80f6fb25fa84ecfc0d4c3b2f3c7" [3]=> string(52) "current session_id: 4ad0a80f6fb25fa84ecfc0d4c3b2f3c7" [4]=> string(40) "destroy 4ad0a80f6fb25fa84ecfc0d4c3b2f3c7" [5]=> string(52) "current session_id: db0f97357f672f41ac3c16b7775bcbd7" [6]=> string(54) "write db0f97357f672f41ac3c16b7775bcbd7: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read db0f97357f672f41ac3c16b7775bcbd7" [10]=> string(40) "destroy db0f97357f672f41ac3c16b7775bcbd7" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.30
string(32) "7839be3227379d6250de6680d4289330" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ad4cb7e40dedea3dd10c070745403ab9" [3]=> string(52) "current session_id: ad4cb7e40dedea3dd10c070745403ab9" [4]=> string(40) "destroy ad4cb7e40dedea3dd10c070745403ab9" [5]=> string(52) "current session_id: 7839be3227379d6250de6680d4289330" [6]=> string(54) "write 7839be3227379d6250de6680d4289330: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 7839be3227379d6250de6680d4289330" [10]=> string(40) "destroy 7839be3227379d6250de6680d4289330" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.29
string(32) "6fca9fb5379a746dc65f701fbaaeca22" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 06427491d42c92f7905e37e63da138e2" [3]=> string(52) "current session_id: 06427491d42c92f7905e37e63da138e2" [4]=> string(40) "destroy 06427491d42c92f7905e37e63da138e2" [5]=> string(52) "current session_id: 6fca9fb5379a746dc65f701fbaaeca22" [6]=> string(54) "write 6fca9fb5379a746dc65f701fbaaeca22: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 6fca9fb5379a746dc65f701fbaaeca22" [10]=> string(40) "destroy 6fca9fb5379a746dc65f701fbaaeca22" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.28
string(32) "acb4894bfa5fd321dae6e5763dd4503d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 440475d4e8d7630a16b2a1609b9e11d2" [3]=> string(52) "current session_id: 440475d4e8d7630a16b2a1609b9e11d2" [4]=> string(40) "destroy 440475d4e8d7630a16b2a1609b9e11d2" [5]=> string(52) "current session_id: acb4894bfa5fd321dae6e5763dd4503d" [6]=> string(54) "write acb4894bfa5fd321dae6e5763dd4503d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read acb4894bfa5fd321dae6e5763dd4503d" [10]=> string(40) "destroy acb4894bfa5fd321dae6e5763dd4503d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.27
string(32) "b75d8c42e515a674dc3a312e8f6c4cae" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 41a6bb54f32b62f739c94c993009c3d8" [3]=> string(52) "current session_id: 41a6bb54f32b62f739c94c993009c3d8" [4]=> string(40) "destroy 41a6bb54f32b62f739c94c993009c3d8" [5]=> string(52) "current session_id: b75d8c42e515a674dc3a312e8f6c4cae" [6]=> string(54) "write b75d8c42e515a674dc3a312e8f6c4cae: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read b75d8c42e515a674dc3a312e8f6c4cae" [10]=> string(40) "destroy b75d8c42e515a674dc3a312e8f6c4cae" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.26
string(32) "48c0e6516e5021970192adbc161e6428" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4f2ed2036fb149eb34afe9de2c0b27a6" [3]=> string(52) "current session_id: 4f2ed2036fb149eb34afe9de2c0b27a6" [4]=> string(40) "destroy 4f2ed2036fb149eb34afe9de2c0b27a6" [5]=> string(52) "current session_id: 48c0e6516e5021970192adbc161e6428" [6]=> string(54) "write 48c0e6516e5021970192adbc161e6428: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 48c0e6516e5021970192adbc161e6428" [10]=> string(40) "destroy 48c0e6516e5021970192adbc161e6428" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.25
string(32) "e90d4b63bf696ea11cc0a23d586f220e" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c0cf372b4b0ef60adb5d538bdfdaea51" [3]=> string(52) "current session_id: c0cf372b4b0ef60adb5d538bdfdaea51" [4]=> string(40) "destroy c0cf372b4b0ef60adb5d538bdfdaea51" [5]=> string(52) "current session_id: e90d4b63bf696ea11cc0a23d586f220e" [6]=> string(54) "write e90d4b63bf696ea11cc0a23d586f220e: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e90d4b63bf696ea11cc0a23d586f220e" [10]=> string(40) "destroy e90d4b63bf696ea11cc0a23d586f220e" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.24
string(32) "99d5336e62d0bbad265cdc7d416490a9" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f842879b009183676069b4176bf586cd" [3]=> string(52) "current session_id: f842879b009183676069b4176bf586cd" [4]=> string(40) "destroy f842879b009183676069b4176bf586cd" [5]=> string(52) "current session_id: 99d5336e62d0bbad265cdc7d416490a9" [6]=> string(54) "write 99d5336e62d0bbad265cdc7d416490a9: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 99d5336e62d0bbad265cdc7d416490a9" [10]=> string(40) "destroy 99d5336e62d0bbad265cdc7d416490a9" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.23
string(32) "e878d20fda99ffd302159ebf6fac1b0e" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read edec7df5291f71c0d5d2bb666a1b7743" [3]=> string(52) "current session_id: edec7df5291f71c0d5d2bb666a1b7743" [4]=> string(40) "destroy edec7df5291f71c0d5d2bb666a1b7743" [5]=> string(52) "current session_id: e878d20fda99ffd302159ebf6fac1b0e" [6]=> string(54) "write e878d20fda99ffd302159ebf6fac1b0e: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e878d20fda99ffd302159ebf6fac1b0e" [10]=> string(40) "destroy e878d20fda99ffd302159ebf6fac1b0e" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.22
string(32) "3ad889627e6574f995933821146d751f" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read baff1daf158357d24dd6ad453312f874" [3]=> string(52) "current session_id: baff1daf158357d24dd6ad453312f874" [4]=> string(40) "destroy baff1daf158357d24dd6ad453312f874" [5]=> string(52) "current session_id: 3ad889627e6574f995933821146d751f" [6]=> string(54) "write 3ad889627e6574f995933821146d751f: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3ad889627e6574f995933821146d751f" [10]=> string(40) "destroy 3ad889627e6574f995933821146d751f" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.21
string(32) "fcf473c156788552adacaf4df3ade292" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2a97d3e38914f20e9d3a96e286b6b903" [3]=> string(52) "current session_id: 2a97d3e38914f20e9d3a96e286b6b903" [4]=> string(40) "destroy 2a97d3e38914f20e9d3a96e286b6b903" [5]=> string(52) "current session_id: fcf473c156788552adacaf4df3ade292" [6]=> string(54) "write fcf473c156788552adacaf4df3ade292: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read fcf473c156788552adacaf4df3ade292" [10]=> string(40) "destroy fcf473c156788552adacaf4df3ade292" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.20
string(32) "be0b2019ab1226c86591c7a30dcfadf5" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 071e56dd7253130c3daf925aeec5f235" [3]=> string(52) "current session_id: 071e56dd7253130c3daf925aeec5f235" [4]=> string(40) "destroy 071e56dd7253130c3daf925aeec5f235" [5]=> string(52) "current session_id: be0b2019ab1226c86591c7a30dcfadf5" [6]=> string(54) "write be0b2019ab1226c86591c7a30dcfadf5: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read be0b2019ab1226c86591c7a30dcfadf5" [10]=> string(40) "destroy be0b2019ab1226c86591c7a30dcfadf5" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.19
string(32) "fe03c389c5c03044ed1157e5d35312ee" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cec7a29118801285b82390d6753acb02" [3]=> string(52) "current session_id: cec7a29118801285b82390d6753acb02" [4]=> string(40) "destroy cec7a29118801285b82390d6753acb02" [5]=> string(52) "current session_id: fe03c389c5c03044ed1157e5d35312ee" [6]=> string(54) "write fe03c389c5c03044ed1157e5d35312ee: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read fe03c389c5c03044ed1157e5d35312ee" [10]=> string(40) "destroy fe03c389c5c03044ed1157e5d35312ee" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.18
string(32) "75886ed3d96ae83384b0c3a505a4cc6d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(19) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 81ec57f1c79e0e3031747df8263c7923" [3]=> string(52) "current session_id: 81ec57f1c79e0e3031747df8263c7923" [4]=> string(40) "destroy 81ec57f1c79e0e3031747df8263c7923" [5]=> string(52) "current session_id: 75886ed3d96ae83384b0c3a505a4cc6d" [6]=> string(54) "write 75886ed3d96ae83384b0c3a505a4cc6d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 75886ed3d96ae83384b0c3a505a4cc6d" [10]=> string(40) "destroy 75886ed3d96ae83384b0c3a505a4cc6d" [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.5.17
string(32) "a972c85ad9805ead068948410ae4762e" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read df626dcd3c6877bd4f115e288af27315" [3]=> string(52) "current session_id: df626dcd3c6877bd4f115e288af27315" [4]=> string(40) "destroy df626dcd3c6877bd4f115e288af27315" [5]=> string(52) "current session_id: a972c85ad9805ead068948410ae4762e" [6]=> string(54) "write a972c85ad9805ead068948410ae4762e: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a972c85ad9805ead068948410ae4762e" [10]=> string(40) "destroy a972c85ad9805ead068948410ae4762e" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.16
string(32) "eab4560b92cd91404b91f505b2cb3777" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 206c2e36291d316ef1d9430034c1b088" [3]=> string(52) "current session_id: 206c2e36291d316ef1d9430034c1b088" [4]=> string(40) "destroy 206c2e36291d316ef1d9430034c1b088" [5]=> string(52) "current session_id: eab4560b92cd91404b91f505b2cb3777" [6]=> string(54) "write eab4560b92cd91404b91f505b2cb3777: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read eab4560b92cd91404b91f505b2cb3777" [10]=> string(40) "destroy eab4560b92cd91404b91f505b2cb3777" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.15
string(32) "a71b8930bc3c65a82d4d8a8bfff62b29" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b48208cb7567545f50477485d750fef0" [3]=> string(52) "current session_id: b48208cb7567545f50477485d750fef0" [4]=> string(40) "destroy b48208cb7567545f50477485d750fef0" [5]=> string(52) "current session_id: a71b8930bc3c65a82d4d8a8bfff62b29" [6]=> string(54) "write a71b8930bc3c65a82d4d8a8bfff62b29: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a71b8930bc3c65a82d4d8a8bfff62b29" [10]=> string(40) "destroy a71b8930bc3c65a82d4d8a8bfff62b29" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.14
string(32) "f2efe170e83f13ff454333ead8f6dcae" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3d15fe2d7500d26d97c3bc557f715460" [3]=> string(52) "current session_id: 3d15fe2d7500d26d97c3bc557f715460" [4]=> string(40) "destroy 3d15fe2d7500d26d97c3bc557f715460" [5]=> string(52) "current session_id: f2efe170e83f13ff454333ead8f6dcae" [6]=> string(54) "write f2efe170e83f13ff454333ead8f6dcae: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f2efe170e83f13ff454333ead8f6dcae" [10]=> string(40) "destroy f2efe170e83f13ff454333ead8f6dcae" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.13
string(32) "0caf8288c90703dc5883250e537dc62d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e2f6bfbf8125a718dc61c187b5e9af83" [3]=> string(52) "current session_id: e2f6bfbf8125a718dc61c187b5e9af83" [4]=> string(40) "destroy e2f6bfbf8125a718dc61c187b5e9af83" [5]=> string(52) "current session_id: 0caf8288c90703dc5883250e537dc62d" [6]=> string(54) "write 0caf8288c90703dc5883250e537dc62d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0caf8288c90703dc5883250e537dc62d" [10]=> string(40) "destroy 0caf8288c90703dc5883250e537dc62d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.12
string(32) "f70a0f9c9395858855e40928ad71e637" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2222b8886725c7816ba5b5ac7678a77c" [3]=> string(52) "current session_id: 2222b8886725c7816ba5b5ac7678a77c" [4]=> string(40) "destroy 2222b8886725c7816ba5b5ac7678a77c" [5]=> string(52) "current session_id: f70a0f9c9395858855e40928ad71e637" [6]=> string(54) "write f70a0f9c9395858855e40928ad71e637: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f70a0f9c9395858855e40928ad71e637" [10]=> string(40) "destroy f70a0f9c9395858855e40928ad71e637" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.11
string(32) "3d297bc172c84a70da3d4114c096f6eb" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 020b3917fe86e4839e0165d191576b7b" [3]=> string(52) "current session_id: 020b3917fe86e4839e0165d191576b7b" [4]=> string(40) "destroy 020b3917fe86e4839e0165d191576b7b" [5]=> string(52) "current session_id: 3d297bc172c84a70da3d4114c096f6eb" [6]=> string(54) "write 3d297bc172c84a70da3d4114c096f6eb: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 3d297bc172c84a70da3d4114c096f6eb" [10]=> string(40) "destroy 3d297bc172c84a70da3d4114c096f6eb" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.10
string(32) "cdaabdfb82d76c9bc08423fffa52e731" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1840a4defef6bdaaa1b5e89fc81be5cf" [3]=> string(52) "current session_id: 1840a4defef6bdaaa1b5e89fc81be5cf" [4]=> string(40) "destroy 1840a4defef6bdaaa1b5e89fc81be5cf" [5]=> string(52) "current session_id: cdaabdfb82d76c9bc08423fffa52e731" [6]=> string(54) "write cdaabdfb82d76c9bc08423fffa52e731: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read cdaabdfb82d76c9bc08423fffa52e731" [10]=> string(40) "destroy cdaabdfb82d76c9bc08423fffa52e731" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.9
string(32) "4d3eb822ebddf05e41dea899a7f0dcf7" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4a45f1f718a2d0c9d6da290c253c529d" [3]=> string(52) "current session_id: 4a45f1f718a2d0c9d6da290c253c529d" [4]=> string(40) "destroy 4a45f1f718a2d0c9d6da290c253c529d" [5]=> string(52) "current session_id: 4d3eb822ebddf05e41dea899a7f0dcf7" [6]=> string(54) "write 4d3eb822ebddf05e41dea899a7f0dcf7: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4d3eb822ebddf05e41dea899a7f0dcf7" [10]=> string(40) "destroy 4d3eb822ebddf05e41dea899a7f0dcf7" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.8
string(32) "dee2b01e98b07f29562acfdcd5be9113" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 415c3648e2b918aaff464d936ad49879" [3]=> string(52) "current session_id: 415c3648e2b918aaff464d936ad49879" [4]=> string(40) "destroy 415c3648e2b918aaff464d936ad49879" [5]=> string(52) "current session_id: dee2b01e98b07f29562acfdcd5be9113" [6]=> string(54) "write dee2b01e98b07f29562acfdcd5be9113: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read dee2b01e98b07f29562acfdcd5be9113" [10]=> string(40) "destroy dee2b01e98b07f29562acfdcd5be9113" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.7
string(32) "67db15011b282dc7ab8e27c39924cda1" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a76f1e03add7c071914dd11e66df1c60" [3]=> string(52) "current session_id: a76f1e03add7c071914dd11e66df1c60" [4]=> string(40) "destroy a76f1e03add7c071914dd11e66df1c60" [5]=> string(52) "current session_id: 67db15011b282dc7ab8e27c39924cda1" [6]=> string(54) "write 67db15011b282dc7ab8e27c39924cda1: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 67db15011b282dc7ab8e27c39924cda1" [10]=> string(40) "destroy 67db15011b282dc7ab8e27c39924cda1" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.6
string(32) "2c8f38a0b519c7c8f36ef112553380b9" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read babb4f751c1e85e4ae113fdeffc93959" [3]=> string(52) "current session_id: babb4f751c1e85e4ae113fdeffc93959" [4]=> string(40) "destroy babb4f751c1e85e4ae113fdeffc93959" [5]=> string(52) "current session_id: 2c8f38a0b519c7c8f36ef112553380b9" [6]=> string(54) "write 2c8f38a0b519c7c8f36ef112553380b9: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2c8f38a0b519c7c8f36ef112553380b9" [10]=> string(40) "destroy 2c8f38a0b519c7c8f36ef112553380b9" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.5
string(32) "dbecef70c1d75083aca0b8fbfcb005b7" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2f455615043041d9b70c7df11ab577b0" [3]=> string(52) "current session_id: 2f455615043041d9b70c7df11ab577b0" [4]=> string(40) "destroy 2f455615043041d9b70c7df11ab577b0" [5]=> string(52) "current session_id: dbecef70c1d75083aca0b8fbfcb005b7" [6]=> string(54) "write dbecef70c1d75083aca0b8fbfcb005b7: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read dbecef70c1d75083aca0b8fbfcb005b7" [10]=> string(40) "destroy dbecef70c1d75083aca0b8fbfcb005b7" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.4
string(32) "edbb262aea5dfa528793c5bcb2601265" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(19) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8406bae5a36896615ce5192bdeface3f" [3]=> string(7) "gc 1440" [4]=> string(52) "current session_id: 8406bae5a36896615ce5192bdeface3f" [5]=> string(40) "destroy 8406bae5a36896615ce5192bdeface3f" [6]=> string(52) "current session_id: edbb262aea5dfa528793c5bcb2601265" [7]=> string(54) "write edbb262aea5dfa528793c5bcb2601265: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(14) "open PHPSESSID" [10]=> string(37) "read edbb262aea5dfa528793c5bcb2601265" [11]=> string(40) "destroy edbb262aea5dfa528793c5bcb2601265" [12]=> string(5) "close" [13]=> string(9) "array ( )" [14]=> string(22) "current session_id: ''" [15]=> string(14) "open PHPSESSID" [16]=> string(24) "read explicit-session-id" [17]=> string(42) "write explicit-session-id: john|s:3:"doe";" [18]=> string(5) "close" }
Output for 5.5.3
string(32) "e3e680b5c762e30cfb48060b14f0da1c" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f99a825a3266436a8e017ee6bcd05152" [3]=> string(52) "current session_id: f99a825a3266436a8e017ee6bcd05152" [4]=> string(40) "destroy f99a825a3266436a8e017ee6bcd05152" [5]=> string(52) "current session_id: e3e680b5c762e30cfb48060b14f0da1c" [6]=> string(54) "write e3e680b5c762e30cfb48060b14f0da1c: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e3e680b5c762e30cfb48060b14f0da1c" [10]=> string(40) "destroy e3e680b5c762e30cfb48060b14f0da1c" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.2
string(32) "ed5bdeeff4fe752995c589cb4307fddd" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1ab402273db1b3428af8c5cb09339a44" [3]=> string(52) "current session_id: 1ab402273db1b3428af8c5cb09339a44" [4]=> string(40) "destroy 1ab402273db1b3428af8c5cb09339a44" [5]=> string(52) "current session_id: ed5bdeeff4fe752995c589cb4307fddd" [6]=> string(54) "write ed5bdeeff4fe752995c589cb4307fddd: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read ed5bdeeff4fe752995c589cb4307fddd" [10]=> string(40) "destroy ed5bdeeff4fe752995c589cb4307fddd" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.1
string(32) "57861afbfaf5ea75c775b0c4be7e05a4" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cb57c2d0adf7e4e1456de0f291aef0b0" [3]=> string(52) "current session_id: cb57c2d0adf7e4e1456de0f291aef0b0" [4]=> string(40) "destroy cb57c2d0adf7e4e1456de0f291aef0b0" [5]=> string(52) "current session_id: 57861afbfaf5ea75c775b0c4be7e05a4" [6]=> string(54) "write 57861afbfaf5ea75c775b0c4be7e05a4: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 57861afbfaf5ea75c775b0c4be7e05a4" [10]=> string(40) "destroy 57861afbfaf5ea75c775b0c4be7e05a4" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.0
string(32) "a611289b28b19c6b9d7d08454f812747" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 92d9093ed2764bc8a0bf96f62e27cf56" [3]=> string(52) "current session_id: 92d9093ed2764bc8a0bf96f62e27cf56" [4]=> string(40) "destroy 92d9093ed2764bc8a0bf96f62e27cf56" [5]=> string(52) "current session_id: a611289b28b19c6b9d7d08454f812747" [6]=> string(54) "write a611289b28b19c6b9d7d08454f812747: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a611289b28b19c6b9d7d08454f812747" [10]=> string(40) "destroy a611289b28b19c6b9d7d08454f812747" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.45
string(32) "2f1462bf8aff4ca24cbe5be66b1da6ba" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read eff94613e342f82bfdc2f0da29f56d3a" [3]=> string(52) "current session_id: eff94613e342f82bfdc2f0da29f56d3a" [4]=> string(40) "destroy eff94613e342f82bfdc2f0da29f56d3a" [5]=> string(52) "current session_id: 2f1462bf8aff4ca24cbe5be66b1da6ba" [6]=> string(54) "write 2f1462bf8aff4ca24cbe5be66b1da6ba: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2f1462bf8aff4ca24cbe5be66b1da6ba" [10]=> string(40) "destroy 2f1462bf8aff4ca24cbe5be66b1da6ba" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.44
string(32) "4e2c1973655e48d97dc5c9fe9fdf3fbe" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cde3617c4fdcfe1e3ab080e340f379a6" [3]=> string(52) "current session_id: cde3617c4fdcfe1e3ab080e340f379a6" [4]=> string(40) "destroy cde3617c4fdcfe1e3ab080e340f379a6" [5]=> string(52) "current session_id: 4e2c1973655e48d97dc5c9fe9fdf3fbe" [6]=> string(54) "write 4e2c1973655e48d97dc5c9fe9fdf3fbe: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4e2c1973655e48d97dc5c9fe9fdf3fbe" [10]=> string(40) "destroy 4e2c1973655e48d97dc5c9fe9fdf3fbe" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.43
string(32) "167e595b57fa10f3eee2c6acc1f902e9" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c2f24201b85f0ae04e37fdf3ca46a8f4" [3]=> string(52) "current session_id: c2f24201b85f0ae04e37fdf3ca46a8f4" [4]=> string(40) "destroy c2f24201b85f0ae04e37fdf3ca46a8f4" [5]=> string(52) "current session_id: 167e595b57fa10f3eee2c6acc1f902e9" [6]=> string(54) "write 167e595b57fa10f3eee2c6acc1f902e9: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 167e595b57fa10f3eee2c6acc1f902e9" [10]=> string(40) "destroy 167e595b57fa10f3eee2c6acc1f902e9" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.42
string(32) "093f42336dd7909904059eea1728c4a6" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fcd676248f3066bf7e7b72e8fea76649" [3]=> string(52) "current session_id: fcd676248f3066bf7e7b72e8fea76649" [4]=> string(40) "destroy fcd676248f3066bf7e7b72e8fea76649" [5]=> string(52) "current session_id: 093f42336dd7909904059eea1728c4a6" [6]=> string(54) "write 093f42336dd7909904059eea1728c4a6: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 093f42336dd7909904059eea1728c4a6" [10]=> string(40) "destroy 093f42336dd7909904059eea1728c4a6" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.41
string(32) "44e6015c84d1acd4749f10ffae2c69ef" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dfa8f4492fddad0b1288b0c37d195b6b" [3]=> string(52) "current session_id: dfa8f4492fddad0b1288b0c37d195b6b" [4]=> string(40) "destroy dfa8f4492fddad0b1288b0c37d195b6b" [5]=> string(52) "current session_id: 44e6015c84d1acd4749f10ffae2c69ef" [6]=> string(54) "write 44e6015c84d1acd4749f10ffae2c69ef: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 44e6015c84d1acd4749f10ffae2c69ef" [10]=> string(40) "destroy 44e6015c84d1acd4749f10ffae2c69ef" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.40
string(32) "2a31f5fe230a1fbd49e434db3a288bc1" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4a4c84aeca95e60524f3989091f8cf3e" [3]=> string(52) "current session_id: 4a4c84aeca95e60524f3989091f8cf3e" [4]=> string(40) "destroy 4a4c84aeca95e60524f3989091f8cf3e" [5]=> string(52) "current session_id: 2a31f5fe230a1fbd49e434db3a288bc1" [6]=> string(54) "write 2a31f5fe230a1fbd49e434db3a288bc1: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2a31f5fe230a1fbd49e434db3a288bc1" [10]=> string(40) "destroy 2a31f5fe230a1fbd49e434db3a288bc1" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.39
string(32) "619a3ba69640f5723e2f4e96b77a65a4" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e1434daa6c4196ba9306cdeb08b9a0c0" [3]=> string(52) "current session_id: e1434daa6c4196ba9306cdeb08b9a0c0" [4]=> string(40) "destroy e1434daa6c4196ba9306cdeb08b9a0c0" [5]=> string(52) "current session_id: 619a3ba69640f5723e2f4e96b77a65a4" [6]=> string(54) "write 619a3ba69640f5723e2f4e96b77a65a4: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 619a3ba69640f5723e2f4e96b77a65a4" [10]=> string(40) "destroy 619a3ba69640f5723e2f4e96b77a65a4" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.38
string(32) "b6ec575ec32efb77a865fbcd9c6b8949" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f65cfbf2401267941bcf007117bb271a" [3]=> string(52) "current session_id: f65cfbf2401267941bcf007117bb271a" [4]=> string(40) "destroy f65cfbf2401267941bcf007117bb271a" [5]=> string(52) "current session_id: b6ec575ec32efb77a865fbcd9c6b8949" [6]=> string(54) "write b6ec575ec32efb77a865fbcd9c6b8949: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read b6ec575ec32efb77a865fbcd9c6b8949" [10]=> string(40) "destroy b6ec575ec32efb77a865fbcd9c6b8949" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.37
string(32) "84a4491e625f368dbbccd6dd9d1770f6" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fad633059438846a9263aa4f565fd1b6" [3]=> string(52) "current session_id: fad633059438846a9263aa4f565fd1b6" [4]=> string(40) "destroy fad633059438846a9263aa4f565fd1b6" [5]=> string(52) "current session_id: 84a4491e625f368dbbccd6dd9d1770f6" [6]=> string(54) "write 84a4491e625f368dbbccd6dd9d1770f6: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 84a4491e625f368dbbccd6dd9d1770f6" [10]=> string(40) "destroy 84a4491e625f368dbbccd6dd9d1770f6" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.36
string(32) "4a5770338876aeef4db121199de88a94" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cf36d3ae6f4786a84cd8685bebfaf326" [3]=> string(52) "current session_id: cf36d3ae6f4786a84cd8685bebfaf326" [4]=> string(40) "destroy cf36d3ae6f4786a84cd8685bebfaf326" [5]=> string(52) "current session_id: 4a5770338876aeef4db121199de88a94" [6]=> string(54) "write 4a5770338876aeef4db121199de88a94: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 4a5770338876aeef4db121199de88a94" [10]=> string(40) "destroy 4a5770338876aeef4db121199de88a94" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.35
string(32) "b14381ece5ebbb74f8651141b7c8cb9d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 537c913850612084e63d4bbebaf8e482" [3]=> string(52) "current session_id: 537c913850612084e63d4bbebaf8e482" [4]=> string(40) "destroy 537c913850612084e63d4bbebaf8e482" [5]=> string(52) "current session_id: b14381ece5ebbb74f8651141b7c8cb9d" [6]=> string(54) "write b14381ece5ebbb74f8651141b7c8cb9d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read b14381ece5ebbb74f8651141b7c8cb9d" [10]=> string(40) "destroy b14381ece5ebbb74f8651141b7c8cb9d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.34
string(32) "17d482cbe1698403040373a9c15f9b59" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b7af71ad24092e02fda9046fba0a2c46" [3]=> string(52) "current session_id: b7af71ad24092e02fda9046fba0a2c46" [4]=> string(40) "destroy b7af71ad24092e02fda9046fba0a2c46" [5]=> string(52) "current session_id: 17d482cbe1698403040373a9c15f9b59" [6]=> string(54) "write 17d482cbe1698403040373a9c15f9b59: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 17d482cbe1698403040373a9c15f9b59" [10]=> string(40) "destroy 17d482cbe1698403040373a9c15f9b59" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.33
string(32) "6b7603f33deb3dfd63e1fcd65e32fa99" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 624d45bcb9a587d47abc47ec3ebfe91b" [3]=> string(52) "current session_id: 624d45bcb9a587d47abc47ec3ebfe91b" [4]=> string(40) "destroy 624d45bcb9a587d47abc47ec3ebfe91b" [5]=> string(52) "current session_id: 6b7603f33deb3dfd63e1fcd65e32fa99" [6]=> string(54) "write 6b7603f33deb3dfd63e1fcd65e32fa99: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 6b7603f33deb3dfd63e1fcd65e32fa99" [10]=> string(40) "destroy 6b7603f33deb3dfd63e1fcd65e32fa99" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.32
string(32) "52035e6f381a5e64b54d2699be24cc1e" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7723979d2d5f899db5d6e94ed1ae38aa" [3]=> string(52) "current session_id: 7723979d2d5f899db5d6e94ed1ae38aa" [4]=> string(40) "destroy 7723979d2d5f899db5d6e94ed1ae38aa" [5]=> string(52) "current session_id: 52035e6f381a5e64b54d2699be24cc1e" [6]=> string(54) "write 52035e6f381a5e64b54d2699be24cc1e: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 52035e6f381a5e64b54d2699be24cc1e" [10]=> string(40) "destroy 52035e6f381a5e64b54d2699be24cc1e" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.31
string(32) "f62165c6625fd52f86eb79e1d36f1aa8" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 527479c7b5fdccf9b2a98106e8117c1f" [3]=> string(52) "current session_id: 527479c7b5fdccf9b2a98106e8117c1f" [4]=> string(40) "destroy 527479c7b5fdccf9b2a98106e8117c1f" [5]=> string(52) "current session_id: f62165c6625fd52f86eb79e1d36f1aa8" [6]=> string(54) "write f62165c6625fd52f86eb79e1d36f1aa8: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read f62165c6625fd52f86eb79e1d36f1aa8" [10]=> string(40) "destroy f62165c6625fd52f86eb79e1d36f1aa8" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.30
string(32) "d58e9a7d9c9a571c817a5050570c4d57" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 937f8d7ceb656d97fafaffb4de85ba06" [3]=> string(52) "current session_id: 937f8d7ceb656d97fafaffb4de85ba06" [4]=> string(40) "destroy 937f8d7ceb656d97fafaffb4de85ba06" [5]=> string(52) "current session_id: d58e9a7d9c9a571c817a5050570c4d57" [6]=> string(54) "write d58e9a7d9c9a571c817a5050570c4d57: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d58e9a7d9c9a571c817a5050570c4d57" [10]=> string(40) "destroy d58e9a7d9c9a571c817a5050570c4d57" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.29
string(32) "2a8b0713de50379c004d4987e3da6c04" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 785e95f59c22347c87275d5345a80efa" [3]=> string(52) "current session_id: 785e95f59c22347c87275d5345a80efa" [4]=> string(40) "destroy 785e95f59c22347c87275d5345a80efa" [5]=> string(52) "current session_id: 2a8b0713de50379c004d4987e3da6c04" [6]=> string(54) "write 2a8b0713de50379c004d4987e3da6c04: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2a8b0713de50379c004d4987e3da6c04" [10]=> string(40) "destroy 2a8b0713de50379c004d4987e3da6c04" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.28
string(32) "b29ca4d46f06b1266276e359b7a18217" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 11f1ad4007cd7d4c8b849bb9a68569c6" [3]=> string(52) "current session_id: 11f1ad4007cd7d4c8b849bb9a68569c6" [4]=> string(40) "destroy 11f1ad4007cd7d4c8b849bb9a68569c6" [5]=> string(52) "current session_id: b29ca4d46f06b1266276e359b7a18217" [6]=> string(54) "write b29ca4d46f06b1266276e359b7a18217: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read b29ca4d46f06b1266276e359b7a18217" [10]=> string(40) "destroy b29ca4d46f06b1266276e359b7a18217" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.27
string(32) "0dcc7946d8d6f3803cf0f4ade91ca655" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0d3c6b8d98f63820b0bd1fb969caa2d2" [3]=> string(52) "current session_id: 0d3c6b8d98f63820b0bd1fb969caa2d2" [4]=> string(40) "destroy 0d3c6b8d98f63820b0bd1fb969caa2d2" [5]=> string(52) "current session_id: 0dcc7946d8d6f3803cf0f4ade91ca655" [6]=> string(54) "write 0dcc7946d8d6f3803cf0f4ade91ca655: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 0dcc7946d8d6f3803cf0f4ade91ca655" [10]=> string(40) "destroy 0dcc7946d8d6f3803cf0f4ade91ca655" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.26
string(32) "8d57f00623b676685bfebc210a6a0617" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 87def85a7b8c4181b01514416d49bb03" [3]=> string(52) "current session_id: 87def85a7b8c4181b01514416d49bb03" [4]=> string(40) "destroy 87def85a7b8c4181b01514416d49bb03" [5]=> string(52) "current session_id: 8d57f00623b676685bfebc210a6a0617" [6]=> string(54) "write 8d57f00623b676685bfebc210a6a0617: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8d57f00623b676685bfebc210a6a0617" [10]=> string(40) "destroy 8d57f00623b676685bfebc210a6a0617" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.25
string(32) "dc0382289383e05628e4b1143814f92a" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5abe1016c0e27e8aef50062629696449" [3]=> string(52) "current session_id: 5abe1016c0e27e8aef50062629696449" [4]=> string(40) "destroy 5abe1016c0e27e8aef50062629696449" [5]=> string(52) "current session_id: dc0382289383e05628e4b1143814f92a" [6]=> string(54) "write dc0382289383e05628e4b1143814f92a: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read dc0382289383e05628e4b1143814f92a" [10]=> string(40) "destroy dc0382289383e05628e4b1143814f92a" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.24
string(32) "1e59403dd867fc5d3aca7a5c8a1a8169" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 982a8040dea47cf5bdeb7c1010e5e4ad" [3]=> string(52) "current session_id: 982a8040dea47cf5bdeb7c1010e5e4ad" [4]=> string(40) "destroy 982a8040dea47cf5bdeb7c1010e5e4ad" [5]=> string(52) "current session_id: 1e59403dd867fc5d3aca7a5c8a1a8169" [6]=> string(54) "write 1e59403dd867fc5d3aca7a5c8a1a8169: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1e59403dd867fc5d3aca7a5c8a1a8169" [10]=> string(40) "destroy 1e59403dd867fc5d3aca7a5c8a1a8169" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.23
string(32) "b6fc8491700e05f59a1df97a3bb0556b" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read de83c6ab9555122d0f58ff2ee23a8459" [3]=> string(52) "current session_id: de83c6ab9555122d0f58ff2ee23a8459" [4]=> string(40) "destroy de83c6ab9555122d0f58ff2ee23a8459" [5]=> string(52) "current session_id: b6fc8491700e05f59a1df97a3bb0556b" [6]=> string(54) "write b6fc8491700e05f59a1df97a3bb0556b: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read b6fc8491700e05f59a1df97a3bb0556b" [10]=> string(40) "destroy b6fc8491700e05f59a1df97a3bb0556b" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.22
string(32) "acf75ce57ac5b29b1c47491a16efb433" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c7aa0796cf50f690ba7c967f45cf0a19" [3]=> string(52) "current session_id: c7aa0796cf50f690ba7c967f45cf0a19" [4]=> string(40) "destroy c7aa0796cf50f690ba7c967f45cf0a19" [5]=> string(52) "current session_id: acf75ce57ac5b29b1c47491a16efb433" [6]=> string(54) "write acf75ce57ac5b29b1c47491a16efb433: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read acf75ce57ac5b29b1c47491a16efb433" [10]=> string(40) "destroy acf75ce57ac5b29b1c47491a16efb433" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.21
string(32) "8233791118c7740cd2da09bda84ab29f" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 15ccda227742076c68574985a8872a58" [3]=> string(52) "current session_id: 15ccda227742076c68574985a8872a58" [4]=> string(40) "destroy 15ccda227742076c68574985a8872a58" [5]=> string(52) "current session_id: 8233791118c7740cd2da09bda84ab29f" [6]=> string(54) "write 8233791118c7740cd2da09bda84ab29f: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8233791118c7740cd2da09bda84ab29f" [10]=> string(40) "destroy 8233791118c7740cd2da09bda84ab29f" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.20
string(32) "1f53400b5ab4cbc114c63c09a03024af" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 40a31a3a9cf44b56dd826c1382fc8045" [3]=> string(52) "current session_id: 40a31a3a9cf44b56dd826c1382fc8045" [4]=> string(40) "destroy 40a31a3a9cf44b56dd826c1382fc8045" [5]=> string(52) "current session_id: 1f53400b5ab4cbc114c63c09a03024af" [6]=> string(54) "write 1f53400b5ab4cbc114c63c09a03024af: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 1f53400b5ab4cbc114c63c09a03024af" [10]=> string(40) "destroy 1f53400b5ab4cbc114c63c09a03024af" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.19
string(32) "7934f082ce4d34933caea501ee31331b" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6081bc15192ab9219b37fbe1a4d8970f" [3]=> string(52) "current session_id: 6081bc15192ab9219b37fbe1a4d8970f" [4]=> string(40) "destroy 6081bc15192ab9219b37fbe1a4d8970f" [5]=> string(52) "current session_id: 7934f082ce4d34933caea501ee31331b" [6]=> string(54) "write 7934f082ce4d34933caea501ee31331b: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 7934f082ce4d34933caea501ee31331b" [10]=> string(40) "destroy 7934f082ce4d34933caea501ee31331b" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.18
string(32) "691ef8389254e03e33760eeb34273311" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 157fc24b9e1c8662367c2f4f1e2a524a" [3]=> string(52) "current session_id: 157fc24b9e1c8662367c2f4f1e2a524a" [4]=> string(40) "destroy 157fc24b9e1c8662367c2f4f1e2a524a" [5]=> string(52) "current session_id: 691ef8389254e03e33760eeb34273311" [6]=> string(54) "write 691ef8389254e03e33760eeb34273311: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 691ef8389254e03e33760eeb34273311" [10]=> string(40) "destroy 691ef8389254e03e33760eeb34273311" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.17
string(32) "822d885c54af9571f1c5d1b3e73456ad" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 37e4b929c4085d768164c51467b05848" [3]=> string(52) "current session_id: 37e4b929c4085d768164c51467b05848" [4]=> string(40) "destroy 37e4b929c4085d768164c51467b05848" [5]=> string(52) "current session_id: 822d885c54af9571f1c5d1b3e73456ad" [6]=> string(54) "write 822d885c54af9571f1c5d1b3e73456ad: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 822d885c54af9571f1c5d1b3e73456ad" [10]=> string(40) "destroy 822d885c54af9571f1c5d1b3e73456ad" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.16
string(32) "db510f374da1aeb3924b03dd6a57247f" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9bc8ab635531482def4f9a4f110ca6cd" [3]=> string(52) "current session_id: 9bc8ab635531482def4f9a4f110ca6cd" [4]=> string(40) "destroy 9bc8ab635531482def4f9a4f110ca6cd" [5]=> string(52) "current session_id: db510f374da1aeb3924b03dd6a57247f" [6]=> string(54) "write db510f374da1aeb3924b03dd6a57247f: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read db510f374da1aeb3924b03dd6a57247f" [10]=> string(40) "destroy db510f374da1aeb3924b03dd6a57247f" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.15
string(32) "edba1b53d61fdac4b0123a1c2cac97ee" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9cb1e46e859d2cc92a23e97d855601a7" [3]=> string(52) "current session_id: 9cb1e46e859d2cc92a23e97d855601a7" [4]=> string(40) "destroy 9cb1e46e859d2cc92a23e97d855601a7" [5]=> string(52) "current session_id: edba1b53d61fdac4b0123a1c2cac97ee" [6]=> string(54) "write edba1b53d61fdac4b0123a1c2cac97ee: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read edba1b53d61fdac4b0123a1c2cac97ee" [10]=> string(40) "destroy edba1b53d61fdac4b0123a1c2cac97ee" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.14
string(32) "76950d88d7430c878b4cb8f269a8f2bc" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 685529b6ae674a287e7a318e5f48d2cf" [3]=> string(52) "current session_id: 685529b6ae674a287e7a318e5f48d2cf" [4]=> string(40) "destroy 685529b6ae674a287e7a318e5f48d2cf" [5]=> string(52) "current session_id: 76950d88d7430c878b4cb8f269a8f2bc" [6]=> string(54) "write 76950d88d7430c878b4cb8f269a8f2bc: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 76950d88d7430c878b4cb8f269a8f2bc" [10]=> string(40) "destroy 76950d88d7430c878b4cb8f269a8f2bc" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.13
string(32) "80b0a826f4549ca2efdbe1fc359dfb6b" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cd2679089516c036d8835daf9287d6c1" [3]=> string(52) "current session_id: cd2679089516c036d8835daf9287d6c1" [4]=> string(40) "destroy cd2679089516c036d8835daf9287d6c1" [5]=> string(52) "current session_id: 80b0a826f4549ca2efdbe1fc359dfb6b" [6]=> string(54) "write 80b0a826f4549ca2efdbe1fc359dfb6b: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 80b0a826f4549ca2efdbe1fc359dfb6b" [10]=> string(40) "destroy 80b0a826f4549ca2efdbe1fc359dfb6b" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.12
string(32) "263980a6ed8a0b04302af4a833e23bed" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a6da9ed09a5eb2fad5ffb1f9526e87fa" [3]=> string(52) "current session_id: a6da9ed09a5eb2fad5ffb1f9526e87fa" [4]=> string(40) "destroy a6da9ed09a5eb2fad5ffb1f9526e87fa" [5]=> string(52) "current session_id: 263980a6ed8a0b04302af4a833e23bed" [6]=> string(54) "write 263980a6ed8a0b04302af4a833e23bed: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 263980a6ed8a0b04302af4a833e23bed" [10]=> string(40) "destroy 263980a6ed8a0b04302af4a833e23bed" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.11
string(32) "c562437891afb0c8b4251329b8a7613d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e8b3117b962316db90bebe5b7c93ee18" [3]=> string(52) "current session_id: e8b3117b962316db90bebe5b7c93ee18" [4]=> string(40) "destroy e8b3117b962316db90bebe5b7c93ee18" [5]=> string(52) "current session_id: c562437891afb0c8b4251329b8a7613d" [6]=> string(54) "write c562437891afb0c8b4251329b8a7613d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read c562437891afb0c8b4251329b8a7613d" [10]=> string(40) "destroy c562437891afb0c8b4251329b8a7613d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.10
string(32) "a7dd66c1ee51d6ac779cd7b98b88025d" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 84725f4da16a42ab0b684dd985cc506c" [3]=> string(52) "current session_id: 84725f4da16a42ab0b684dd985cc506c" [4]=> string(40) "destroy 84725f4da16a42ab0b684dd985cc506c" [5]=> string(52) "current session_id: a7dd66c1ee51d6ac779cd7b98b88025d" [6]=> string(54) "write a7dd66c1ee51d6ac779cd7b98b88025d: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a7dd66c1ee51d6ac779cd7b98b88025d" [10]=> string(40) "destroy a7dd66c1ee51d6ac779cd7b98b88025d" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.9
string(32) "362305b705b7ce3d89e26d222ff485f4" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 98eec94e5943d4e2ae1cb845c28e890b" [3]=> string(52) "current session_id: 98eec94e5943d4e2ae1cb845c28e890b" [4]=> string(40) "destroy 98eec94e5943d4e2ae1cb845c28e890b" [5]=> string(52) "current session_id: 362305b705b7ce3d89e26d222ff485f4" [6]=> string(54) "write 362305b705b7ce3d89e26d222ff485f4: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 362305b705b7ce3d89e26d222ff485f4" [10]=> string(40) "destroy 362305b705b7ce3d89e26d222ff485f4" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.8
string(32) "311f42f8a6df3c2b65701ceeb74303dc" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e7babeba666efc7c571c4c33e17eed6d" [3]=> string(52) "current session_id: e7babeba666efc7c571c4c33e17eed6d" [4]=> string(40) "destroy e7babeba666efc7c571c4c33e17eed6d" [5]=> string(52) "current session_id: 311f42f8a6df3c2b65701ceeb74303dc" [6]=> string(54) "write 311f42f8a6df3c2b65701ceeb74303dc: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 311f42f8a6df3c2b65701ceeb74303dc" [10]=> string(40) "destroy 311f42f8a6df3c2b65701ceeb74303dc" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.7
string(32) "d8fb06744068b535942546e933a42849" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d9dcb51042cf828ce8e07c8c679e36eb" [3]=> string(52) "current session_id: d9dcb51042cf828ce8e07c8c679e36eb" [4]=> string(40) "destroy d9dcb51042cf828ce8e07c8c679e36eb" [5]=> string(52) "current session_id: d8fb06744068b535942546e933a42849" [6]=> string(54) "write d8fb06744068b535942546e933a42849: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d8fb06744068b535942546e933a42849" [10]=> string(40) "destroy d8fb06744068b535942546e933a42849" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.6
string(32) "8f3b240cfe449e30945ffc10d12e9924" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 28cb04e39c112c1f7b95cfc243a84999" [3]=> string(52) "current session_id: 28cb04e39c112c1f7b95cfc243a84999" [4]=> string(40) "destroy 28cb04e39c112c1f7b95cfc243a84999" [5]=> string(52) "current session_id: 8f3b240cfe449e30945ffc10d12e9924" [6]=> string(54) "write 8f3b240cfe449e30945ffc10d12e9924: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 8f3b240cfe449e30945ffc10d12e9924" [10]=> string(40) "destroy 8f3b240cfe449e30945ffc10d12e9924" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.5
string(32) "2eba2e092cba72ebf1bd8209aa462d1c" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d3151ee04d8c061b8855bf0d1f0979ec" [3]=> string(52) "current session_id: d3151ee04d8c061b8855bf0d1f0979ec" [4]=> string(40) "destroy d3151ee04d8c061b8855bf0d1f0979ec" [5]=> string(52) "current session_id: 2eba2e092cba72ebf1bd8209aa462d1c" [6]=> string(54) "write 2eba2e092cba72ebf1bd8209aa462d1c: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 2eba2e092cba72ebf1bd8209aa462d1c" [10]=> string(40) "destroy 2eba2e092cba72ebf1bd8209aa462d1c" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.4
string(32) "65d2d65a7d87fc634b399f15bbddb903" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4d2bb0346e37d191fbe1fc430b44644c" [3]=> string(52) "current session_id: 4d2bb0346e37d191fbe1fc430b44644c" [4]=> string(40) "destroy 4d2bb0346e37d191fbe1fc430b44644c" [5]=> string(52) "current session_id: 65d2d65a7d87fc634b399f15bbddb903" [6]=> string(54) "write 65d2d65a7d87fc634b399f15bbddb903: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 65d2d65a7d87fc634b399f15bbddb903" [10]=> string(40) "destroy 65d2d65a7d87fc634b399f15bbddb903" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.3
string(32) "d83937f40c626c3138f0601a9cdb7390" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 887c8b76682479487c50a3d4c2ca6d9c" [3]=> string(52) "current session_id: 887c8b76682479487c50a3d4c2ca6d9c" [4]=> string(40) "destroy 887c8b76682479487c50a3d4c2ca6d9c" [5]=> string(52) "current session_id: d83937f40c626c3138f0601a9cdb7390" [6]=> string(54) "write d83937f40c626c3138f0601a9cdb7390: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read d83937f40c626c3138f0601a9cdb7390" [10]=> string(40) "destroy d83937f40c626c3138f0601a9cdb7390" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.2
string(32) "51a4ab3ea8e9a425c9acf4cc1d860695" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c4ea1a592ec4138d4955d482777a9027" [3]=> string(52) "current session_id: c4ea1a592ec4138d4955d482777a9027" [4]=> string(40) "destroy c4ea1a592ec4138d4955d482777a9027" [5]=> string(52) "current session_id: 51a4ab3ea8e9a425c9acf4cc1d860695" [6]=> string(54) "write 51a4ab3ea8e9a425c9acf4cc1d860695: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 51a4ab3ea8e9a425c9acf4cc1d860695" [10]=> string(40) "destroy 51a4ab3ea8e9a425c9acf4cc1d860695" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.1
string(32) "33a1274bb160923441d40258c30e5d1c" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 70d72aefab0a441820afa47f7a527f22" [3]=> string(52) "current session_id: 70d72aefab0a441820afa47f7a527f22" [4]=> string(40) "destroy 70d72aefab0a441820afa47f7a527f22" [5]=> string(52) "current session_id: 33a1274bb160923441d40258c30e5d1c" [6]=> string(54) "write 33a1274bb160923441d40258c30e5d1c: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 33a1274bb160923441d40258c30e5d1c" [10]=> string(40) "destroy 33a1274bb160923441d40258c30e5d1c" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.0
string(32) "ae050793ef5ba3851d0019a0bcd8f09e" Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/FI32h:59) in /in/FI32h on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/FI32h:59) in /in/FI32h on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fe25c828f235dad52e09f0e0a609faa4" [3]=> string(52) "current session_id: fe25c828f235dad52e09f0e0a609faa4" [4]=> string(40) "destroy fe25c828f235dad52e09f0e0a609faa4" [5]=> string(52) "current session_id: ae050793ef5ba3851d0019a0bcd8f09e" [6]=> string(54) "write ae050793ef5ba3851d0019a0bcd8f09e: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read ae050793ef5ba3851d0019a0bcd8f09e" [10]=> string(40) "destroy ae050793ef5ba3851d0019a0bcd8f09e" [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/FI32h 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/FI32h on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/FI32h 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/FI32h on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/FI32h 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/FI32h 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/FI32h on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/FI32h on line 4
Process exited with code 255.

preferences:
349.36 ms | 401 KiB | 459 Q