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); } } var_dump(PHP_SESSION_DISABLED); var_dump(PHP_SESSION_NONE ); var_dump(PHP_SESSION_ACTIVE); var_dump(session_status()); $handler = new MySessionHandler(); session_set_save_handler($handler, true); $handler->messages[] = 'isset($_SESSION): ' . var_export(isset($_SESSION), true); $_SESSION['before'] = 'start'; session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = 'current session_id: ' . session_id(); session_regenerate_id(true); $handler->messages[] = 'current session_id: ' . session_id(); session_write_close(); var_dump(constant('SID')); var_dump(session_id()); var_dump(session_status()); session_start(); session_destroy(); $handler->messages[] = var_export($_SESSION, true); $handler->messages[] = 'current session_id: ' . var_export(session_id(), true); session_id('explicit-session-id'); session_start(); $_SESSION['john'] = 'doe';
Output for 8.1.0 - 8.1.27, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 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/NZSS7 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/NZSS7 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/NZSS7 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/NZSS7 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/NZSS7 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/NZSS7 on line 33 int(0) int(1) int(2) int(1) Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/NZSS7 on line 50 Warning: session_start(): Session cannot be started after headers have already been sent in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/NZSS7 on line 60 Fatal error: Uncaught Error: Undefined constant "SID" in /in/NZSS7:64 Stack trace: #0 /in/NZSS7(64): constant('SID') #1 {main} thrown in /in/NZSS7 on line 64 array(3) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(20) "current session_id: " [2]=> string(20) "current session_id: " }
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 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/NZSS7 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/NZSS7 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/NZSS7 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/NZSS7 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/NZSS7 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/NZSS7 on line 33 int(0) int(1) int(2) int(1) Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/NZSS7 on line 50 Warning: session_start(): Session cannot be started after headers have already been sent in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/NZSS7 on line 60 Fatal error: Uncaught Error: Undefined constant "SID" in /in/NZSS7:64 Stack trace: #0 /in/NZSS7(64): constant('SID') #1 {main} thrown in /in/NZSS7 on line 64 array(3) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(20) "current session_id: " [2]=> string(20) "current session_id: " }
Process exited with code 255.
Output for 8.0.0 - 8.0.30
int(0) int(1) int(2) int(1) Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/NZSS7 on line 50 Warning: session_start(): Session cannot be started after headers have already been sent in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/NZSS7 on line 60 Fatal error: Uncaught Error: Undefined constant "SID" in /in/NZSS7:64 Stack trace: #0 /in/NZSS7(64): constant('SID') #1 {main} thrown in /in/NZSS7 on line 64 array(3) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(20) "current session_id: " [2]=> string(20) "current session_id: " }
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
int(0) int(1) int(2) int(1) Warning: session_set_save_handler(): Cannot change save handler when headers already sent in /in/NZSS7 on line 50 Warning: session_start(): Cannot start session when headers already sent in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/NZSS7 on line 60 Warning: constant(): Couldn't find constant SID in /in/NZSS7 on line 64 NULL string(0) "" int(1) Warning: session_start(): Cannot start session when headers already sent in /in/NZSS7 on line 68 Warning: session_destroy(): Trying to destroy uninitialized session in /in/NZSS7 on line 69 Warning: session_id(): Cannot change session id when headers already sent in /in/NZSS7 on line 74 Warning: session_start(): Cannot start session when headers already sent in /in/NZSS7 on line 75 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 7.1.0 - 7.1.33
int(0) int(1) int(2) int(1) Warning: session_start(): Session callback expects true/false return value in /in/NZSS7 on line 55 Warning: session_start(): Session callback expects true/false return value in /in/NZSS7 on line 55 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/NZSS7 on line 55
Process exited with code 255.
Output for 7.0.0 - 7.0.33
int(0) int(1) int(2) int(1) Warning: session_start(): Session callback expects true/false return value in /in/NZSS7 on line 55 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/NZSS7 on line 55 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.40
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=805594d2ab009ddc9672e84c19622689" string(32) "805594d2ab009ddc9672e84c19622689" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 805594d2ab009ddc9672e84c19622689" [3]=> string(52) "current session_id: 805594d2ab009ddc9672e84c19622689" [4]=> string(52) "current session_id: 805594d2ab009ddc9672e84c19622689" [5]=> string(54) "write 805594d2ab009ddc9672e84c19622689: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 805594d2ab009ddc9672e84c19622689" [9]=> string(40) "destroy 805594d2ab009ddc9672e84c19622689" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.39
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=143eef3d891bc6bd9b2bdfa3360a19da" string(32) "143eef3d891bc6bd9b2bdfa3360a19da" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 143eef3d891bc6bd9b2bdfa3360a19da" [3]=> string(52) "current session_id: 143eef3d891bc6bd9b2bdfa3360a19da" [4]=> string(52) "current session_id: 143eef3d891bc6bd9b2bdfa3360a19da" [5]=> string(54) "write 143eef3d891bc6bd9b2bdfa3360a19da: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 143eef3d891bc6bd9b2bdfa3360a19da" [9]=> string(40) "destroy 143eef3d891bc6bd9b2bdfa3360a19da" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.38
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=96af44f528b7c5e383ad6dc5b4ba082a" string(32) "96af44f528b7c5e383ad6dc5b4ba082a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 96af44f528b7c5e383ad6dc5b4ba082a" [3]=> string(52) "current session_id: 96af44f528b7c5e383ad6dc5b4ba082a" [4]=> string(52) "current session_id: 96af44f528b7c5e383ad6dc5b4ba082a" [5]=> string(54) "write 96af44f528b7c5e383ad6dc5b4ba082a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 96af44f528b7c5e383ad6dc5b4ba082a" [9]=> string(40) "destroy 96af44f528b7c5e383ad6dc5b4ba082a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.37
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=bdf5f1d245836e8c40d619207c266966" string(32) "bdf5f1d245836e8c40d619207c266966" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bdf5f1d245836e8c40d619207c266966" [3]=> string(52) "current session_id: bdf5f1d245836e8c40d619207c266966" [4]=> string(52) "current session_id: bdf5f1d245836e8c40d619207c266966" [5]=> string(54) "write bdf5f1d245836e8c40d619207c266966: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bdf5f1d245836e8c40d619207c266966" [9]=> string(40) "destroy bdf5f1d245836e8c40d619207c266966" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.36
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=9ef84783132431c5a538092306475d69" string(32) "9ef84783132431c5a538092306475d69" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9ef84783132431c5a538092306475d69" [3]=> string(52) "current session_id: 9ef84783132431c5a538092306475d69" [4]=> string(52) "current session_id: 9ef84783132431c5a538092306475d69" [5]=> string(54) "write 9ef84783132431c5a538092306475d69: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9ef84783132431c5a538092306475d69" [9]=> string(40) "destroy 9ef84783132431c5a538092306475d69" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.35
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=9dc039f1af76473c19eee58661376f46" string(32) "9dc039f1af76473c19eee58661376f46" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9dc039f1af76473c19eee58661376f46" [3]=> string(52) "current session_id: 9dc039f1af76473c19eee58661376f46" [4]=> string(52) "current session_id: 9dc039f1af76473c19eee58661376f46" [5]=> string(54) "write 9dc039f1af76473c19eee58661376f46: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9dc039f1af76473c19eee58661376f46" [9]=> string(40) "destroy 9dc039f1af76473c19eee58661376f46" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.34
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=c9550bee6f785e20acb819cf60d93330" string(32) "c9550bee6f785e20acb819cf60d93330" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c9550bee6f785e20acb819cf60d93330" [3]=> string(52) "current session_id: c9550bee6f785e20acb819cf60d93330" [4]=> string(52) "current session_id: c9550bee6f785e20acb819cf60d93330" [5]=> string(54) "write c9550bee6f785e20acb819cf60d93330: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c9550bee6f785e20acb819cf60d93330" [9]=> string(40) "destroy c9550bee6f785e20acb819cf60d93330" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.33
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=35ce01f1e0ce82c75917dbf35f89d5ac" string(32) "35ce01f1e0ce82c75917dbf35f89d5ac" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 35ce01f1e0ce82c75917dbf35f89d5ac" [3]=> string(52) "current session_id: 35ce01f1e0ce82c75917dbf35f89d5ac" [4]=> string(52) "current session_id: 35ce01f1e0ce82c75917dbf35f89d5ac" [5]=> string(54) "write 35ce01f1e0ce82c75917dbf35f89d5ac: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 35ce01f1e0ce82c75917dbf35f89d5ac" [9]=> string(40) "destroy 35ce01f1e0ce82c75917dbf35f89d5ac" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.32
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=229a81ada5d6a09375371d0d05cf596d" string(32) "229a81ada5d6a09375371d0d05cf596d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 229a81ada5d6a09375371d0d05cf596d" [3]=> string(52) "current session_id: 229a81ada5d6a09375371d0d05cf596d" [4]=> string(52) "current session_id: 229a81ada5d6a09375371d0d05cf596d" [5]=> string(54) "write 229a81ada5d6a09375371d0d05cf596d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 229a81ada5d6a09375371d0d05cf596d" [9]=> string(40) "destroy 229a81ada5d6a09375371d0d05cf596d" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.31
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=b10ba590557a942b5a9b376cf24eb6cd" string(32) "b10ba590557a942b5a9b376cf24eb6cd" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b10ba590557a942b5a9b376cf24eb6cd" [3]=> string(52) "current session_id: b10ba590557a942b5a9b376cf24eb6cd" [4]=> string(52) "current session_id: b10ba590557a942b5a9b376cf24eb6cd" [5]=> string(54) "write b10ba590557a942b5a9b376cf24eb6cd: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b10ba590557a942b5a9b376cf24eb6cd" [9]=> string(40) "destroy b10ba590557a942b5a9b376cf24eb6cd" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.30
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=f368c14f7a4cbbfa712a16ed0be2a264" string(32) "f368c14f7a4cbbfa712a16ed0be2a264" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f368c14f7a4cbbfa712a16ed0be2a264" [3]=> string(52) "current session_id: f368c14f7a4cbbfa712a16ed0be2a264" [4]=> string(52) "current session_id: f368c14f7a4cbbfa712a16ed0be2a264" [5]=> string(54) "write f368c14f7a4cbbfa712a16ed0be2a264: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f368c14f7a4cbbfa712a16ed0be2a264" [9]=> string(40) "destroy f368c14f7a4cbbfa712a16ed0be2a264" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.29
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=872d74437a9796b5c5dc47af88559d2b" string(32) "872d74437a9796b5c5dc47af88559d2b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 872d74437a9796b5c5dc47af88559d2b" [3]=> string(52) "current session_id: 872d74437a9796b5c5dc47af88559d2b" [4]=> string(52) "current session_id: 872d74437a9796b5c5dc47af88559d2b" [5]=> string(54) "write 872d74437a9796b5c5dc47af88559d2b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 872d74437a9796b5c5dc47af88559d2b" [9]=> string(40) "destroy 872d74437a9796b5c5dc47af88559d2b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.28
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=e2005ddba3fabd38bc7b262ac03a3e66" string(32) "e2005ddba3fabd38bc7b262ac03a3e66" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e2005ddba3fabd38bc7b262ac03a3e66" [3]=> string(52) "current session_id: e2005ddba3fabd38bc7b262ac03a3e66" [4]=> string(52) "current session_id: e2005ddba3fabd38bc7b262ac03a3e66" [5]=> string(54) "write e2005ddba3fabd38bc7b262ac03a3e66: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e2005ddba3fabd38bc7b262ac03a3e66" [9]=> string(40) "destroy e2005ddba3fabd38bc7b262ac03a3e66" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.27
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=884718b40864291c24b24cf3e5dfe6ad" string(32) "884718b40864291c24b24cf3e5dfe6ad" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 884718b40864291c24b24cf3e5dfe6ad" [3]=> string(52) "current session_id: 884718b40864291c24b24cf3e5dfe6ad" [4]=> string(52) "current session_id: 884718b40864291c24b24cf3e5dfe6ad" [5]=> string(54) "write 884718b40864291c24b24cf3e5dfe6ad: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 884718b40864291c24b24cf3e5dfe6ad" [9]=> string(40) "destroy 884718b40864291c24b24cf3e5dfe6ad" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.26
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=b7a42c8dc400e3581910dc83850300db" string(32) "b7a42c8dc400e3581910dc83850300db" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b7a42c8dc400e3581910dc83850300db" [3]=> string(52) "current session_id: b7a42c8dc400e3581910dc83850300db" [4]=> string(52) "current session_id: b7a42c8dc400e3581910dc83850300db" [5]=> string(54) "write b7a42c8dc400e3581910dc83850300db: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b7a42c8dc400e3581910dc83850300db" [9]=> string(40) "destroy b7a42c8dc400e3581910dc83850300db" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.25
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=4adc3ce034721757bb9e9086f41e0c18" string(32) "4adc3ce034721757bb9e9086f41e0c18" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4adc3ce034721757bb9e9086f41e0c18" [3]=> string(52) "current session_id: 4adc3ce034721757bb9e9086f41e0c18" [4]=> string(52) "current session_id: 4adc3ce034721757bb9e9086f41e0c18" [5]=> string(54) "write 4adc3ce034721757bb9e9086f41e0c18: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4adc3ce034721757bb9e9086f41e0c18" [9]=> string(40) "destroy 4adc3ce034721757bb9e9086f41e0c18" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.24
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=9616ee985620ca95b58c375cd9da5311" string(32) "9616ee985620ca95b58c375cd9da5311" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9616ee985620ca95b58c375cd9da5311" [3]=> string(52) "current session_id: 9616ee985620ca95b58c375cd9da5311" [4]=> string(52) "current session_id: 9616ee985620ca95b58c375cd9da5311" [5]=> string(54) "write 9616ee985620ca95b58c375cd9da5311: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9616ee985620ca95b58c375cd9da5311" [9]=> string(40) "destroy 9616ee985620ca95b58c375cd9da5311" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.23
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=ecc44e9cc2d2e0a8c49bf446dcfc72b7" string(32) "ecc44e9cc2d2e0a8c49bf446dcfc72b7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ecc44e9cc2d2e0a8c49bf446dcfc72b7" [3]=> string(52) "current session_id: ecc44e9cc2d2e0a8c49bf446dcfc72b7" [4]=> string(52) "current session_id: ecc44e9cc2d2e0a8c49bf446dcfc72b7" [5]=> string(54) "write ecc44e9cc2d2e0a8c49bf446dcfc72b7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ecc44e9cc2d2e0a8c49bf446dcfc72b7" [9]=> string(40) "destroy ecc44e9cc2d2e0a8c49bf446dcfc72b7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.22
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=8b7e20dcdd0047b631ecee09ae761530" string(32) "8b7e20dcdd0047b631ecee09ae761530" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8b7e20dcdd0047b631ecee09ae761530" [3]=> string(52) "current session_id: 8b7e20dcdd0047b631ecee09ae761530" [4]=> string(52) "current session_id: 8b7e20dcdd0047b631ecee09ae761530" [5]=> string(54) "write 8b7e20dcdd0047b631ecee09ae761530: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 8b7e20dcdd0047b631ecee09ae761530" [9]=> string(40) "destroy 8b7e20dcdd0047b631ecee09ae761530" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.21
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=465b9248923efb04fa83e5ae8ef904c4" string(32) "465b9248923efb04fa83e5ae8ef904c4" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 465b9248923efb04fa83e5ae8ef904c4" [3]=> string(52) "current session_id: 465b9248923efb04fa83e5ae8ef904c4" [4]=> string(52) "current session_id: 465b9248923efb04fa83e5ae8ef904c4" [5]=> string(54) "write 465b9248923efb04fa83e5ae8ef904c4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 465b9248923efb04fa83e5ae8ef904c4" [9]=> string(40) "destroy 465b9248923efb04fa83e5ae8ef904c4" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.20
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=77a4fc9fa66a1542b99378560bbe4c3c" string(32) "77a4fc9fa66a1542b99378560bbe4c3c" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 77a4fc9fa66a1542b99378560bbe4c3c" [3]=> string(52) "current session_id: 77a4fc9fa66a1542b99378560bbe4c3c" [4]=> string(52) "current session_id: 77a4fc9fa66a1542b99378560bbe4c3c" [5]=> string(54) "write 77a4fc9fa66a1542b99378560bbe4c3c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 77a4fc9fa66a1542b99378560bbe4c3c" [9]=> string(40) "destroy 77a4fc9fa66a1542b99378560bbe4c3c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.19
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=550bbabbcc4b86513fdceda90ada5782" string(32) "550bbabbcc4b86513fdceda90ada5782" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 550bbabbcc4b86513fdceda90ada5782" [3]=> string(52) "current session_id: 550bbabbcc4b86513fdceda90ada5782" [4]=> string(52) "current session_id: 550bbabbcc4b86513fdceda90ada5782" [5]=> string(54) "write 550bbabbcc4b86513fdceda90ada5782: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 550bbabbcc4b86513fdceda90ada5782" [9]=> string(40) "destroy 550bbabbcc4b86513fdceda90ada5782" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.18
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=a91f97f02ca4c7424294f69bf1e07c21" string(32) "a91f97f02ca4c7424294f69bf1e07c21" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a91f97f02ca4c7424294f69bf1e07c21" [3]=> string(52) "current session_id: a91f97f02ca4c7424294f69bf1e07c21" [4]=> string(52) "current session_id: a91f97f02ca4c7424294f69bf1e07c21" [5]=> string(54) "write a91f97f02ca4c7424294f69bf1e07c21: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a91f97f02ca4c7424294f69bf1e07c21" [9]=> string(40) "destroy a91f97f02ca4c7424294f69bf1e07c21" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.17
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=35d241d6b158fcc76b705cd1d2a486f5" string(32) "35d241d6b158fcc76b705cd1d2a486f5" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 35d241d6b158fcc76b705cd1d2a486f5" [3]=> string(52) "current session_id: 35d241d6b158fcc76b705cd1d2a486f5" [4]=> string(52) "current session_id: 35d241d6b158fcc76b705cd1d2a486f5" [5]=> string(54) "write 35d241d6b158fcc76b705cd1d2a486f5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 35d241d6b158fcc76b705cd1d2a486f5" [9]=> string(40) "destroy 35d241d6b158fcc76b705cd1d2a486f5" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.16
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=ae4eb668a3e3f7b86d5370312e7ebf6f" string(32) "ae4eb668a3e3f7b86d5370312e7ebf6f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ae4eb668a3e3f7b86d5370312e7ebf6f" [3]=> string(52) "current session_id: ae4eb668a3e3f7b86d5370312e7ebf6f" [4]=> string(52) "current session_id: ae4eb668a3e3f7b86d5370312e7ebf6f" [5]=> string(54) "write ae4eb668a3e3f7b86d5370312e7ebf6f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ae4eb668a3e3f7b86d5370312e7ebf6f" [9]=> string(40) "destroy ae4eb668a3e3f7b86d5370312e7ebf6f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.15
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=6f4bcb55485a588220406e56d2ba9fc7" string(32) "6f4bcb55485a588220406e56d2ba9fc7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6f4bcb55485a588220406e56d2ba9fc7" [3]=> string(52) "current session_id: 6f4bcb55485a588220406e56d2ba9fc7" [4]=> string(52) "current session_id: 6f4bcb55485a588220406e56d2ba9fc7" [5]=> string(54) "write 6f4bcb55485a588220406e56d2ba9fc7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6f4bcb55485a588220406e56d2ba9fc7" [9]=> string(40) "destroy 6f4bcb55485a588220406e56d2ba9fc7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.14
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=798ff67e2d4bef36fc98701264ee82fb" string(32) "798ff67e2d4bef36fc98701264ee82fb" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 798ff67e2d4bef36fc98701264ee82fb" [3]=> string(52) "current session_id: 798ff67e2d4bef36fc98701264ee82fb" [4]=> string(52) "current session_id: 798ff67e2d4bef36fc98701264ee82fb" [5]=> string(54) "write 798ff67e2d4bef36fc98701264ee82fb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 798ff67e2d4bef36fc98701264ee82fb" [9]=> string(40) "destroy 798ff67e2d4bef36fc98701264ee82fb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.13
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=0d658ae8301931a548f63c7d7f8d8f3a" string(32) "0d658ae8301931a548f63c7d7f8d8f3a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0d658ae8301931a548f63c7d7f8d8f3a" [3]=> string(52) "current session_id: 0d658ae8301931a548f63c7d7f8d8f3a" [4]=> string(52) "current session_id: 0d658ae8301931a548f63c7d7f8d8f3a" [5]=> string(54) "write 0d658ae8301931a548f63c7d7f8d8f3a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0d658ae8301931a548f63c7d7f8d8f3a" [9]=> string(40) "destroy 0d658ae8301931a548f63c7d7f8d8f3a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.12
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d31a02682f638006b275365fce2ae973" string(32) "d31a02682f638006b275365fce2ae973" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d31a02682f638006b275365fce2ae973" [3]=> string(52) "current session_id: d31a02682f638006b275365fce2ae973" [4]=> string(52) "current session_id: d31a02682f638006b275365fce2ae973" [5]=> string(54) "write d31a02682f638006b275365fce2ae973: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d31a02682f638006b275365fce2ae973" [9]=> string(40) "destroy d31a02682f638006b275365fce2ae973" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.11
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=dce1081068e017aa62c6e7e9624422a6" string(32) "dce1081068e017aa62c6e7e9624422a6" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dce1081068e017aa62c6e7e9624422a6" [3]=> string(52) "current session_id: dce1081068e017aa62c6e7e9624422a6" [4]=> string(52) "current session_id: dce1081068e017aa62c6e7e9624422a6" [5]=> string(54) "write dce1081068e017aa62c6e7e9624422a6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read dce1081068e017aa62c6e7e9624422a6" [9]=> string(40) "destroy dce1081068e017aa62c6e7e9624422a6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.10
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=aba06efe5e2018d238b7cfb9287317f6" string(32) "aba06efe5e2018d238b7cfb9287317f6" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read aba06efe5e2018d238b7cfb9287317f6" [3]=> string(52) "current session_id: aba06efe5e2018d238b7cfb9287317f6" [4]=> string(52) "current session_id: aba06efe5e2018d238b7cfb9287317f6" [5]=> string(54) "write aba06efe5e2018d238b7cfb9287317f6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read aba06efe5e2018d238b7cfb9287317f6" [9]=> string(40) "destroy aba06efe5e2018d238b7cfb9287317f6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.9
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=4c5d2677fca3529ac6a25f1227ded412" string(32) "4c5d2677fca3529ac6a25f1227ded412" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4c5d2677fca3529ac6a25f1227ded412" [3]=> string(52) "current session_id: 4c5d2677fca3529ac6a25f1227ded412" [4]=> string(52) "current session_id: 4c5d2677fca3529ac6a25f1227ded412" [5]=> string(54) "write 4c5d2677fca3529ac6a25f1227ded412: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4c5d2677fca3529ac6a25f1227ded412" [9]=> string(40) "destroy 4c5d2677fca3529ac6a25f1227ded412" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.8
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=5d8ae55e7a196cfae0dde09346ca2bbf" string(32) "5d8ae55e7a196cfae0dde09346ca2bbf" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5d8ae55e7a196cfae0dde09346ca2bbf" [3]=> string(52) "current session_id: 5d8ae55e7a196cfae0dde09346ca2bbf" [4]=> string(52) "current session_id: 5d8ae55e7a196cfae0dde09346ca2bbf" [5]=> string(54) "write 5d8ae55e7a196cfae0dde09346ca2bbf: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5d8ae55e7a196cfae0dde09346ca2bbf" [9]=> string(40) "destroy 5d8ae55e7a196cfae0dde09346ca2bbf" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.7
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=0de08de6ffc746bd74538464d20c5597" string(32) "0de08de6ffc746bd74538464d20c5597" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0de08de6ffc746bd74538464d20c5597" [3]=> string(52) "current session_id: 0de08de6ffc746bd74538464d20c5597" [4]=> string(52) "current session_id: 0de08de6ffc746bd74538464d20c5597" [5]=> string(54) "write 0de08de6ffc746bd74538464d20c5597: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0de08de6ffc746bd74538464d20c5597" [9]=> string(40) "destroy 0de08de6ffc746bd74538464d20c5597" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.6
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=5ac6f968be7f30d67e816c3f34f2bff0" string(32) "5ac6f968be7f30d67e816c3f34f2bff0" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5ac6f968be7f30d67e816c3f34f2bff0" [3]=> string(52) "current session_id: 5ac6f968be7f30d67e816c3f34f2bff0" [4]=> string(52) "current session_id: 5ac6f968be7f30d67e816c3f34f2bff0" [5]=> string(54) "write 5ac6f968be7f30d67e816c3f34f2bff0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5ac6f968be7f30d67e816c3f34f2bff0" [9]=> string(40) "destroy 5ac6f968be7f30d67e816c3f34f2bff0" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.5
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=f8f3d7190e1703a96e2dda18cbcd7921" string(32) "f8f3d7190e1703a96e2dda18cbcd7921" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f8f3d7190e1703a96e2dda18cbcd7921" [3]=> string(52) "current session_id: f8f3d7190e1703a96e2dda18cbcd7921" [4]=> string(52) "current session_id: f8f3d7190e1703a96e2dda18cbcd7921" [5]=> string(54) "write f8f3d7190e1703a96e2dda18cbcd7921: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f8f3d7190e1703a96e2dda18cbcd7921" [9]=> string(40) "destroy f8f3d7190e1703a96e2dda18cbcd7921" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.4
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=fe965d66372c9fadabcc8ef87a7ab5dd" string(32) "fe965d66372c9fadabcc8ef87a7ab5dd" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fe965d66372c9fadabcc8ef87a7ab5dd" [3]=> string(52) "current session_id: fe965d66372c9fadabcc8ef87a7ab5dd" [4]=> string(52) "current session_id: fe965d66372c9fadabcc8ef87a7ab5dd" [5]=> string(54) "write fe965d66372c9fadabcc8ef87a7ab5dd: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read fe965d66372c9fadabcc8ef87a7ab5dd" [9]=> string(40) "destroy fe965d66372c9fadabcc8ef87a7ab5dd" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.3
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=5ecab87af601e41e23c2cffdad216d96" string(32) "5ecab87af601e41e23c2cffdad216d96" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5ecab87af601e41e23c2cffdad216d96" [3]=> string(52) "current session_id: 5ecab87af601e41e23c2cffdad216d96" [4]=> string(52) "current session_id: 5ecab87af601e41e23c2cffdad216d96" [5]=> string(54) "write 5ecab87af601e41e23c2cffdad216d96: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5ecab87af601e41e23c2cffdad216d96" [9]=> string(40) "destroy 5ecab87af601e41e23c2cffdad216d96" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.2
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=30d6661bfd9d00ba4c0e9b2e733cbd4e" string(32) "30d6661bfd9d00ba4c0e9b2e733cbd4e" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 30d6661bfd9d00ba4c0e9b2e733cbd4e" [3]=> string(52) "current session_id: 30d6661bfd9d00ba4c0e9b2e733cbd4e" [4]=> string(52) "current session_id: 30d6661bfd9d00ba4c0e9b2e733cbd4e" [5]=> string(54) "write 30d6661bfd9d00ba4c0e9b2e733cbd4e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 30d6661bfd9d00ba4c0e9b2e733cbd4e" [9]=> string(40) "destroy 30d6661bfd9d00ba4c0e9b2e733cbd4e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.1
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=949541c0f5bc283dfa9d0eadb30544f7" string(32) "949541c0f5bc283dfa9d0eadb30544f7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 949541c0f5bc283dfa9d0eadb30544f7" [3]=> string(52) "current session_id: 949541c0f5bc283dfa9d0eadb30544f7" [4]=> string(52) "current session_id: 949541c0f5bc283dfa9d0eadb30544f7" [5]=> string(54) "write 949541c0f5bc283dfa9d0eadb30544f7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 949541c0f5bc283dfa9d0eadb30544f7" [9]=> string(40) "destroy 949541c0f5bc283dfa9d0eadb30544f7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.0
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=5846738823b41bd4f6ea6981d90bda23" string(32) "5846738823b41bd4f6ea6981d90bda23" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5846738823b41bd4f6ea6981d90bda23" [3]=> string(52) "current session_id: 5846738823b41bd4f6ea6981d90bda23" [4]=> string(52) "current session_id: 5846738823b41bd4f6ea6981d90bda23" [5]=> string(54) "write 5846738823b41bd4f6ea6981d90bda23: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5846738823b41bd4f6ea6981d90bda23" [9]=> string(40) "destroy 5846738823b41bd4f6ea6981d90bda23" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.38
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=71156d84ad10ef605c7c043d3dc0e1d7" string(32) "71156d84ad10ef605c7c043d3dc0e1d7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 71156d84ad10ef605c7c043d3dc0e1d7" [3]=> string(52) "current session_id: 71156d84ad10ef605c7c043d3dc0e1d7" [4]=> string(52) "current session_id: 71156d84ad10ef605c7c043d3dc0e1d7" [5]=> string(54) "write 71156d84ad10ef605c7c043d3dc0e1d7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 71156d84ad10ef605c7c043d3dc0e1d7" [9]=> string(40) "destroy 71156d84ad10ef605c7c043d3dc0e1d7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.37
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=f8e45a8f60ddc6e6f4b839e782261947" string(32) "f8e45a8f60ddc6e6f4b839e782261947" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f8e45a8f60ddc6e6f4b839e782261947" [3]=> string(52) "current session_id: f8e45a8f60ddc6e6f4b839e782261947" [4]=> string(52) "current session_id: f8e45a8f60ddc6e6f4b839e782261947" [5]=> string(54) "write f8e45a8f60ddc6e6f4b839e782261947: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f8e45a8f60ddc6e6f4b839e782261947" [9]=> string(40) "destroy f8e45a8f60ddc6e6f4b839e782261947" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.36
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=c328b8906b9fa747768d4d20b7c3069a" string(32) "c328b8906b9fa747768d4d20b7c3069a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c328b8906b9fa747768d4d20b7c3069a" [3]=> string(52) "current session_id: c328b8906b9fa747768d4d20b7c3069a" [4]=> string(52) "current session_id: c328b8906b9fa747768d4d20b7c3069a" [5]=> string(54) "write c328b8906b9fa747768d4d20b7c3069a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c328b8906b9fa747768d4d20b7c3069a" [9]=> string(40) "destroy c328b8906b9fa747768d4d20b7c3069a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.35
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=b9123a74476d08d60fe158afe2261e27" string(32) "b9123a74476d08d60fe158afe2261e27" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b9123a74476d08d60fe158afe2261e27" [3]=> string(52) "current session_id: b9123a74476d08d60fe158afe2261e27" [4]=> string(52) "current session_id: b9123a74476d08d60fe158afe2261e27" [5]=> string(54) "write b9123a74476d08d60fe158afe2261e27: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b9123a74476d08d60fe158afe2261e27" [9]=> string(40) "destroy b9123a74476d08d60fe158afe2261e27" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.34
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=cf645245cb27ab3d810efd844e7202d6" string(32) "cf645245cb27ab3d810efd844e7202d6" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cf645245cb27ab3d810efd844e7202d6" [3]=> string(52) "current session_id: cf645245cb27ab3d810efd844e7202d6" [4]=> string(52) "current session_id: cf645245cb27ab3d810efd844e7202d6" [5]=> string(54) "write cf645245cb27ab3d810efd844e7202d6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read cf645245cb27ab3d810efd844e7202d6" [9]=> string(40) "destroy cf645245cb27ab3d810efd844e7202d6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.33
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=c0f220175f35da9d085f6bd0e1052e85" string(32) "c0f220175f35da9d085f6bd0e1052e85" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c0f220175f35da9d085f6bd0e1052e85" [3]=> string(52) "current session_id: c0f220175f35da9d085f6bd0e1052e85" [4]=> string(52) "current session_id: c0f220175f35da9d085f6bd0e1052e85" [5]=> string(54) "write c0f220175f35da9d085f6bd0e1052e85: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c0f220175f35da9d085f6bd0e1052e85" [9]=> string(40) "destroy c0f220175f35da9d085f6bd0e1052e85" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.32
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d58825b52f9f0aabface2fbaf9e6d2f3" string(32) "d58825b52f9f0aabface2fbaf9e6d2f3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d58825b52f9f0aabface2fbaf9e6d2f3" [3]=> string(52) "current session_id: d58825b52f9f0aabface2fbaf9e6d2f3" [4]=> string(52) "current session_id: d58825b52f9f0aabface2fbaf9e6d2f3" [5]=> string(54) "write d58825b52f9f0aabface2fbaf9e6d2f3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d58825b52f9f0aabface2fbaf9e6d2f3" [9]=> string(40) "destroy d58825b52f9f0aabface2fbaf9e6d2f3" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.31
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=ae2951502ee74cab786662131f556a8c" string(32) "ae2951502ee74cab786662131f556a8c" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ae2951502ee74cab786662131f556a8c" [3]=> string(52) "current session_id: ae2951502ee74cab786662131f556a8c" [4]=> string(52) "current session_id: ae2951502ee74cab786662131f556a8c" [5]=> string(54) "write ae2951502ee74cab786662131f556a8c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ae2951502ee74cab786662131f556a8c" [9]=> string(40) "destroy ae2951502ee74cab786662131f556a8c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.30
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d97e08e5f6f7a12253fc193106b70a7d" string(32) "d97e08e5f6f7a12253fc193106b70a7d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d97e08e5f6f7a12253fc193106b70a7d" [3]=> string(52) "current session_id: d97e08e5f6f7a12253fc193106b70a7d" [4]=> string(52) "current session_id: d97e08e5f6f7a12253fc193106b70a7d" [5]=> string(54) "write d97e08e5f6f7a12253fc193106b70a7d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d97e08e5f6f7a12253fc193106b70a7d" [9]=> string(40) "destroy d97e08e5f6f7a12253fc193106b70a7d" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.29
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=b40b4321770e33bcd16adc3b2848b1a1" string(32) "b40b4321770e33bcd16adc3b2848b1a1" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b40b4321770e33bcd16adc3b2848b1a1" [3]=> string(52) "current session_id: b40b4321770e33bcd16adc3b2848b1a1" [4]=> string(52) "current session_id: b40b4321770e33bcd16adc3b2848b1a1" [5]=> string(54) "write b40b4321770e33bcd16adc3b2848b1a1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b40b4321770e33bcd16adc3b2848b1a1" [9]=> string(40) "destroy b40b4321770e33bcd16adc3b2848b1a1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.28
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=507551cae58ead28201c8ebee0d6455b" string(32) "507551cae58ead28201c8ebee0d6455b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 507551cae58ead28201c8ebee0d6455b" [3]=> string(52) "current session_id: 507551cae58ead28201c8ebee0d6455b" [4]=> string(52) "current session_id: 507551cae58ead28201c8ebee0d6455b" [5]=> string(54) "write 507551cae58ead28201c8ebee0d6455b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 507551cae58ead28201c8ebee0d6455b" [9]=> string(40) "destroy 507551cae58ead28201c8ebee0d6455b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.27
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=bfd1e3b8c3fa3382beddf91ac3a09d1f" string(32) "bfd1e3b8c3fa3382beddf91ac3a09d1f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bfd1e3b8c3fa3382beddf91ac3a09d1f" [3]=> string(52) "current session_id: bfd1e3b8c3fa3382beddf91ac3a09d1f" [4]=> string(52) "current session_id: bfd1e3b8c3fa3382beddf91ac3a09d1f" [5]=> string(54) "write bfd1e3b8c3fa3382beddf91ac3a09d1f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bfd1e3b8c3fa3382beddf91ac3a09d1f" [9]=> string(40) "destroy bfd1e3b8c3fa3382beddf91ac3a09d1f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.26
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=93c80c39bc0f6cb2a6e64ff9b98a92d7" string(32) "93c80c39bc0f6cb2a6e64ff9b98a92d7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 93c80c39bc0f6cb2a6e64ff9b98a92d7" [3]=> string(52) "current session_id: 93c80c39bc0f6cb2a6e64ff9b98a92d7" [4]=> string(52) "current session_id: 93c80c39bc0f6cb2a6e64ff9b98a92d7" [5]=> string(54) "write 93c80c39bc0f6cb2a6e64ff9b98a92d7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 93c80c39bc0f6cb2a6e64ff9b98a92d7" [9]=> string(40) "destroy 93c80c39bc0f6cb2a6e64ff9b98a92d7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.25
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=27c3cdf870d11fdb927fe06099d6801e" string(32) "27c3cdf870d11fdb927fe06099d6801e" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 27c3cdf870d11fdb927fe06099d6801e" [3]=> string(52) "current session_id: 27c3cdf870d11fdb927fe06099d6801e" [4]=> string(52) "current session_id: 27c3cdf870d11fdb927fe06099d6801e" [5]=> string(54) "write 27c3cdf870d11fdb927fe06099d6801e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 27c3cdf870d11fdb927fe06099d6801e" [9]=> string(40) "destroy 27c3cdf870d11fdb927fe06099d6801e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.24
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=5bf5d814e50015c1a5b897de630f93e1" string(32) "5bf5d814e50015c1a5b897de630f93e1" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5bf5d814e50015c1a5b897de630f93e1" [3]=> string(52) "current session_id: 5bf5d814e50015c1a5b897de630f93e1" [4]=> string(52) "current session_id: 5bf5d814e50015c1a5b897de630f93e1" [5]=> string(54) "write 5bf5d814e50015c1a5b897de630f93e1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5bf5d814e50015c1a5b897de630f93e1" [9]=> string(40) "destroy 5bf5d814e50015c1a5b897de630f93e1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.23
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d16622d51958e0cd34d32903bf3d565b" string(32) "d16622d51958e0cd34d32903bf3d565b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d16622d51958e0cd34d32903bf3d565b" [3]=> string(52) "current session_id: d16622d51958e0cd34d32903bf3d565b" [4]=> string(52) "current session_id: d16622d51958e0cd34d32903bf3d565b" [5]=> string(54) "write d16622d51958e0cd34d32903bf3d565b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d16622d51958e0cd34d32903bf3d565b" [9]=> string(40) "destroy d16622d51958e0cd34d32903bf3d565b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.22
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=f08da4e26030f247264d0e4f54815045" string(32) "f08da4e26030f247264d0e4f54815045" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f08da4e26030f247264d0e4f54815045" [3]=> string(52) "current session_id: f08da4e26030f247264d0e4f54815045" [4]=> string(52) "current session_id: f08da4e26030f247264d0e4f54815045" [5]=> string(54) "write f08da4e26030f247264d0e4f54815045: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f08da4e26030f247264d0e4f54815045" [9]=> string(40) "destroy f08da4e26030f247264d0e4f54815045" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.21
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=99eca1c4279ccd9f0301d86f2d8b4c0d" string(32) "99eca1c4279ccd9f0301d86f2d8b4c0d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 99eca1c4279ccd9f0301d86f2d8b4c0d" [3]=> string(52) "current session_id: 99eca1c4279ccd9f0301d86f2d8b4c0d" [4]=> string(52) "current session_id: 99eca1c4279ccd9f0301d86f2d8b4c0d" [5]=> string(54) "write 99eca1c4279ccd9f0301d86f2d8b4c0d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 99eca1c4279ccd9f0301d86f2d8b4c0d" [9]=> string(40) "destroy 99eca1c4279ccd9f0301d86f2d8b4c0d" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.20
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=0dc19cc2f6f1dc9be850fade8d2ba80d" string(32) "0dc19cc2f6f1dc9be850fade8d2ba80d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0dc19cc2f6f1dc9be850fade8d2ba80d" [3]=> string(52) "current session_id: 0dc19cc2f6f1dc9be850fade8d2ba80d" [4]=> string(52) "current session_id: 0dc19cc2f6f1dc9be850fade8d2ba80d" [5]=> string(54) "write 0dc19cc2f6f1dc9be850fade8d2ba80d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0dc19cc2f6f1dc9be850fade8d2ba80d" [9]=> string(40) "destroy 0dc19cc2f6f1dc9be850fade8d2ba80d" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.19
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=6413260086247ad5528e4c8b79c19cde" string(32) "6413260086247ad5528e4c8b79c19cde" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6413260086247ad5528e4c8b79c19cde" [3]=> string(52) "current session_id: 6413260086247ad5528e4c8b79c19cde" [4]=> string(52) "current session_id: 6413260086247ad5528e4c8b79c19cde" [5]=> string(54) "write 6413260086247ad5528e4c8b79c19cde: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6413260086247ad5528e4c8b79c19cde" [9]=> string(40) "destroy 6413260086247ad5528e4c8b79c19cde" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.18
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=5f735acc96f74a76f0c345cf0cf997e2" string(32) "5f735acc96f74a76f0c345cf0cf997e2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5f735acc96f74a76f0c345cf0cf997e2" [3]=> string(52) "current session_id: 5f735acc96f74a76f0c345cf0cf997e2" [4]=> string(52) "current session_id: 5f735acc96f74a76f0c345cf0cf997e2" [5]=> string(54) "write 5f735acc96f74a76f0c345cf0cf997e2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5f735acc96f74a76f0c345cf0cf997e2" [9]=> string(40) "destroy 5f735acc96f74a76f0c345cf0cf997e2" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.17
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=06a549046c6b27140d8a0a4be0c27579" string(32) "06a549046c6b27140d8a0a4be0c27579" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 06a549046c6b27140d8a0a4be0c27579" [3]=> string(52) "current session_id: 06a549046c6b27140d8a0a4be0c27579" [4]=> string(52) "current session_id: 06a549046c6b27140d8a0a4be0c27579" [5]=> string(54) "write 06a549046c6b27140d8a0a4be0c27579: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 06a549046c6b27140d8a0a4be0c27579" [9]=> string(40) "destroy 06a549046c6b27140d8a0a4be0c27579" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.16
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=ae67d26415715c3acc0bbae93a4aa2a6" string(32) "ae67d26415715c3acc0bbae93a4aa2a6" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ae67d26415715c3acc0bbae93a4aa2a6" [3]=> string(52) "current session_id: ae67d26415715c3acc0bbae93a4aa2a6" [4]=> string(52) "current session_id: ae67d26415715c3acc0bbae93a4aa2a6" [5]=> string(54) "write ae67d26415715c3acc0bbae93a4aa2a6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ae67d26415715c3acc0bbae93a4aa2a6" [9]=> string(40) "destroy ae67d26415715c3acc0bbae93a4aa2a6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.15
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=ef8eb0dbb27d35fa6c07c717b16029d4" string(32) "ef8eb0dbb27d35fa6c07c717b16029d4" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ef8eb0dbb27d35fa6c07c717b16029d4" [3]=> string(52) "current session_id: ef8eb0dbb27d35fa6c07c717b16029d4" [4]=> string(52) "current session_id: ef8eb0dbb27d35fa6c07c717b16029d4" [5]=> string(54) "write ef8eb0dbb27d35fa6c07c717b16029d4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ef8eb0dbb27d35fa6c07c717b16029d4" [9]=> string(40) "destroy ef8eb0dbb27d35fa6c07c717b16029d4" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.14
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=de255d691e68623a94eac77c92a0a25b" string(32) "de255d691e68623a94eac77c92a0a25b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read de255d691e68623a94eac77c92a0a25b" [3]=> string(52) "current session_id: de255d691e68623a94eac77c92a0a25b" [4]=> string(52) "current session_id: de255d691e68623a94eac77c92a0a25b" [5]=> string(54) "write de255d691e68623a94eac77c92a0a25b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read de255d691e68623a94eac77c92a0a25b" [9]=> string(40) "destroy de255d691e68623a94eac77c92a0a25b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.13
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=16b842b84357fb68ec4418fd1efdd05a" string(32) "16b842b84357fb68ec4418fd1efdd05a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 16b842b84357fb68ec4418fd1efdd05a" [3]=> string(52) "current session_id: 16b842b84357fb68ec4418fd1efdd05a" [4]=> string(52) "current session_id: 16b842b84357fb68ec4418fd1efdd05a" [5]=> string(54) "write 16b842b84357fb68ec4418fd1efdd05a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 16b842b84357fb68ec4418fd1efdd05a" [9]=> string(40) "destroy 16b842b84357fb68ec4418fd1efdd05a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.12
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=056ba756728e6f64fd90e5854a593785" string(32) "056ba756728e6f64fd90e5854a593785" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 056ba756728e6f64fd90e5854a593785" [3]=> string(52) "current session_id: 056ba756728e6f64fd90e5854a593785" [4]=> string(52) "current session_id: 056ba756728e6f64fd90e5854a593785" [5]=> string(54) "write 056ba756728e6f64fd90e5854a593785: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 056ba756728e6f64fd90e5854a593785" [9]=> string(7) "gc 1440" [10]=> string(40) "destroy 056ba756728e6f64fd90e5854a593785" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> 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
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d66dc477053c76094033f72ed6ceb7ad" string(32) "d66dc477053c76094033f72ed6ceb7ad" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d66dc477053c76094033f72ed6ceb7ad" [3]=> string(52) "current session_id: d66dc477053c76094033f72ed6ceb7ad" [4]=> string(52) "current session_id: d66dc477053c76094033f72ed6ceb7ad" [5]=> string(54) "write d66dc477053c76094033f72ed6ceb7ad: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d66dc477053c76094033f72ed6ceb7ad" [9]=> string(40) "destroy d66dc477053c76094033f72ed6ceb7ad" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.10
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=9d24d115c7fa645232afecbd75c85c1f" string(32) "9d24d115c7fa645232afecbd75c85c1f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9d24d115c7fa645232afecbd75c85c1f" [3]=> string(52) "current session_id: 9d24d115c7fa645232afecbd75c85c1f" [4]=> string(52) "current session_id: 9d24d115c7fa645232afecbd75c85c1f" [5]=> string(54) "write 9d24d115c7fa645232afecbd75c85c1f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9d24d115c7fa645232afecbd75c85c1f" [9]=> string(40) "destroy 9d24d115c7fa645232afecbd75c85c1f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.9
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=36e5f62239ba60894c71abe6c4c25ae4" string(32) "36e5f62239ba60894c71abe6c4c25ae4" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 36e5f62239ba60894c71abe6c4c25ae4" [3]=> string(52) "current session_id: 36e5f62239ba60894c71abe6c4c25ae4" [4]=> string(52) "current session_id: 36e5f62239ba60894c71abe6c4c25ae4" [5]=> string(54) "write 36e5f62239ba60894c71abe6c4c25ae4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 36e5f62239ba60894c71abe6c4c25ae4" [9]=> string(40) "destroy 36e5f62239ba60894c71abe6c4c25ae4" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.8
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=ff568acee0578650a21374b8370ec3d5" string(32) "ff568acee0578650a21374b8370ec3d5" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ff568acee0578650a21374b8370ec3d5" [3]=> string(52) "current session_id: ff568acee0578650a21374b8370ec3d5" [4]=> string(52) "current session_id: ff568acee0578650a21374b8370ec3d5" [5]=> string(54) "write ff568acee0578650a21374b8370ec3d5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ff568acee0578650a21374b8370ec3d5" [9]=> string(40) "destroy ff568acee0578650a21374b8370ec3d5" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.7
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=68ca5afa8bb80632543705a570d3058e" string(32) "68ca5afa8bb80632543705a570d3058e" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 68ca5afa8bb80632543705a570d3058e" [3]=> string(52) "current session_id: 68ca5afa8bb80632543705a570d3058e" [4]=> string(52) "current session_id: 68ca5afa8bb80632543705a570d3058e" [5]=> string(54) "write 68ca5afa8bb80632543705a570d3058e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 68ca5afa8bb80632543705a570d3058e" [9]=> string(40) "destroy 68ca5afa8bb80632543705a570d3058e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.6
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d710bb88149deb37efff51e56816eb71" string(32) "d710bb88149deb37efff51e56816eb71" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d710bb88149deb37efff51e56816eb71" [3]=> string(52) "current session_id: d710bb88149deb37efff51e56816eb71" [4]=> string(52) "current session_id: d710bb88149deb37efff51e56816eb71" [5]=> string(54) "write d710bb88149deb37efff51e56816eb71: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d710bb88149deb37efff51e56816eb71" [9]=> string(40) "destroy d710bb88149deb37efff51e56816eb71" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.5
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=5557747e0348baaed24d7a7f37c0180d" string(32) "5557747e0348baaed24d7a7f37c0180d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5557747e0348baaed24d7a7f37c0180d" [3]=> string(52) "current session_id: 5557747e0348baaed24d7a7f37c0180d" [4]=> string(52) "current session_id: 5557747e0348baaed24d7a7f37c0180d" [5]=> string(54) "write 5557747e0348baaed24d7a7f37c0180d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5557747e0348baaed24d7a7f37c0180d" [9]=> string(40) "destroy 5557747e0348baaed24d7a7f37c0180d" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.4
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=7800b72d38df001cb29703f34e723839" string(32) "7800b72d38df001cb29703f34e723839" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7800b72d38df001cb29703f34e723839" [3]=> string(52) "current session_id: 7800b72d38df001cb29703f34e723839" [4]=> string(52) "current session_id: 7800b72d38df001cb29703f34e723839" [5]=> string(54) "write 7800b72d38df001cb29703f34e723839: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7800b72d38df001cb29703f34e723839" [9]=> string(40) "destroy 7800b72d38df001cb29703f34e723839" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.3
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=cb1d6089ea652abf6aeedcca1cc89f12" string(32) "cb1d6089ea652abf6aeedcca1cc89f12" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cb1d6089ea652abf6aeedcca1cc89f12" [3]=> string(52) "current session_id: cb1d6089ea652abf6aeedcca1cc89f12" [4]=> string(52) "current session_id: cb1d6089ea652abf6aeedcca1cc89f12" [5]=> string(54) "write cb1d6089ea652abf6aeedcca1cc89f12: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read cb1d6089ea652abf6aeedcca1cc89f12" [9]=> string(40) "destroy cb1d6089ea652abf6aeedcca1cc89f12" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.2
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=6ddc4382e8b3a5f1956c736304406fe6" string(32) "6ddc4382e8b3a5f1956c736304406fe6" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6ddc4382e8b3a5f1956c736304406fe6" [3]=> string(52) "current session_id: 6ddc4382e8b3a5f1956c736304406fe6" [4]=> string(52) "current session_id: 6ddc4382e8b3a5f1956c736304406fe6" [5]=> string(54) "write 6ddc4382e8b3a5f1956c736304406fe6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6ddc4382e8b3a5f1956c736304406fe6" [9]=> string(40) "destroy 6ddc4382e8b3a5f1956c736304406fe6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.1
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=7488bf07314ee63b3a68d7d7b1207b77" string(32) "7488bf07314ee63b3a68d7d7b1207b77" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7488bf07314ee63b3a68d7d7b1207b77" [3]=> string(52) "current session_id: 7488bf07314ee63b3a68d7d7b1207b77" [4]=> string(52) "current session_id: 7488bf07314ee63b3a68d7d7b1207b77" [5]=> string(54) "write 7488bf07314ee63b3a68d7d7b1207b77: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7488bf07314ee63b3a68d7d7b1207b77" [9]=> string(40) "destroy 7488bf07314ee63b3a68d7d7b1207b77" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.0
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=4bd2c319ee14e913c410bf693c6774e5" string(32) "4bd2c319ee14e913c410bf693c6774e5" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4bd2c319ee14e913c410bf693c6774e5" [3]=> string(52) "current session_id: 4bd2c319ee14e913c410bf693c6774e5" [4]=> string(52) "current session_id: 4bd2c319ee14e913c410bf693c6774e5" [5]=> string(54) "write 4bd2c319ee14e913c410bf693c6774e5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4bd2c319ee14e913c410bf693c6774e5" [9]=> string(40) "destroy 4bd2c319ee14e913c410bf693c6774e5" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.45
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=0e71c84474bd5fdaef488f1753101a04" string(32) "0e71c84474bd5fdaef488f1753101a04" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0e71c84474bd5fdaef488f1753101a04" [3]=> string(52) "current session_id: 0e71c84474bd5fdaef488f1753101a04" [4]=> string(52) "current session_id: 0e71c84474bd5fdaef488f1753101a04" [5]=> string(54) "write 0e71c84474bd5fdaef488f1753101a04: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0e71c84474bd5fdaef488f1753101a04" [9]=> string(40) "destroy 0e71c84474bd5fdaef488f1753101a04" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.44
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=bf9192a16a73dcc9a1e1671664589960" string(32) "bf9192a16a73dcc9a1e1671664589960" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bf9192a16a73dcc9a1e1671664589960" [3]=> string(52) "current session_id: bf9192a16a73dcc9a1e1671664589960" [4]=> string(52) "current session_id: bf9192a16a73dcc9a1e1671664589960" [5]=> string(54) "write bf9192a16a73dcc9a1e1671664589960: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bf9192a16a73dcc9a1e1671664589960" [9]=> string(40) "destroy bf9192a16a73dcc9a1e1671664589960" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.43
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=6ee370443f9cdea03f3f68edf1b8cd84" string(32) "6ee370443f9cdea03f3f68edf1b8cd84" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6ee370443f9cdea03f3f68edf1b8cd84" [3]=> string(52) "current session_id: 6ee370443f9cdea03f3f68edf1b8cd84" [4]=> string(52) "current session_id: 6ee370443f9cdea03f3f68edf1b8cd84" [5]=> string(54) "write 6ee370443f9cdea03f3f68edf1b8cd84: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6ee370443f9cdea03f3f68edf1b8cd84" [9]=> string(40) "destroy 6ee370443f9cdea03f3f68edf1b8cd84" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.42
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=e3a18fbee8b826fd187426339831bff7" string(32) "e3a18fbee8b826fd187426339831bff7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e3a18fbee8b826fd187426339831bff7" [3]=> string(52) "current session_id: e3a18fbee8b826fd187426339831bff7" [4]=> string(52) "current session_id: e3a18fbee8b826fd187426339831bff7" [5]=> string(54) "write e3a18fbee8b826fd187426339831bff7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e3a18fbee8b826fd187426339831bff7" [9]=> string(40) "destroy e3a18fbee8b826fd187426339831bff7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.41
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=34480e536d85671b8f11cbdd10ad4318" string(32) "34480e536d85671b8f11cbdd10ad4318" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 34480e536d85671b8f11cbdd10ad4318" [3]=> string(52) "current session_id: 34480e536d85671b8f11cbdd10ad4318" [4]=> string(52) "current session_id: 34480e536d85671b8f11cbdd10ad4318" [5]=> string(54) "write 34480e536d85671b8f11cbdd10ad4318: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 34480e536d85671b8f11cbdd10ad4318" [9]=> string(40) "destroy 34480e536d85671b8f11cbdd10ad4318" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.40
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=bcdc67244b40eff4439c9bd9b8b8bb9c" string(32) "bcdc67244b40eff4439c9bd9b8b8bb9c" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bcdc67244b40eff4439c9bd9b8b8bb9c" [3]=> string(52) "current session_id: bcdc67244b40eff4439c9bd9b8b8bb9c" [4]=> string(52) "current session_id: bcdc67244b40eff4439c9bd9b8b8bb9c" [5]=> string(54) "write bcdc67244b40eff4439c9bd9b8b8bb9c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bcdc67244b40eff4439c9bd9b8b8bb9c" [9]=> string(40) "destroy bcdc67244b40eff4439c9bd9b8b8bb9c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.39
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d80958a8e5f11aede019612c4973da17" string(32) "d80958a8e5f11aede019612c4973da17" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d80958a8e5f11aede019612c4973da17" [3]=> string(52) "current session_id: d80958a8e5f11aede019612c4973da17" [4]=> string(52) "current session_id: d80958a8e5f11aede019612c4973da17" [5]=> string(54) "write d80958a8e5f11aede019612c4973da17: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d80958a8e5f11aede019612c4973da17" [9]=> string(40) "destroy d80958a8e5f11aede019612c4973da17" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.38
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=e3df29ae289f4cdb3d6194e57a1b2d94" string(32) "e3df29ae289f4cdb3d6194e57a1b2d94" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e3df29ae289f4cdb3d6194e57a1b2d94" [3]=> string(52) "current session_id: e3df29ae289f4cdb3d6194e57a1b2d94" [4]=> string(52) "current session_id: e3df29ae289f4cdb3d6194e57a1b2d94" [5]=> string(54) "write e3df29ae289f4cdb3d6194e57a1b2d94: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e3df29ae289f4cdb3d6194e57a1b2d94" [9]=> string(40) "destroy e3df29ae289f4cdb3d6194e57a1b2d94" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.37
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d83c9227b1acd720cdee770f3e637697" string(32) "d83c9227b1acd720cdee770f3e637697" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d83c9227b1acd720cdee770f3e637697" [3]=> string(52) "current session_id: d83c9227b1acd720cdee770f3e637697" [4]=> string(52) "current session_id: d83c9227b1acd720cdee770f3e637697" [5]=> string(54) "write d83c9227b1acd720cdee770f3e637697: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d83c9227b1acd720cdee770f3e637697" [9]=> string(40) "destroy d83c9227b1acd720cdee770f3e637697" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.36
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=61f17bf22d30b7ce9103d345a52c8e67" string(32) "61f17bf22d30b7ce9103d345a52c8e67" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 61f17bf22d30b7ce9103d345a52c8e67" [3]=> string(52) "current session_id: 61f17bf22d30b7ce9103d345a52c8e67" [4]=> string(52) "current session_id: 61f17bf22d30b7ce9103d345a52c8e67" [5]=> string(54) "write 61f17bf22d30b7ce9103d345a52c8e67: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 61f17bf22d30b7ce9103d345a52c8e67" [9]=> string(40) "destroy 61f17bf22d30b7ce9103d345a52c8e67" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.35
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=4773b0579a0f4ef0ce3f9a793c45bb5a" string(32) "4773b0579a0f4ef0ce3f9a793c45bb5a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4773b0579a0f4ef0ce3f9a793c45bb5a" [3]=> string(52) "current session_id: 4773b0579a0f4ef0ce3f9a793c45bb5a" [4]=> string(52) "current session_id: 4773b0579a0f4ef0ce3f9a793c45bb5a" [5]=> string(54) "write 4773b0579a0f4ef0ce3f9a793c45bb5a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4773b0579a0f4ef0ce3f9a793c45bb5a" [9]=> string(40) "destroy 4773b0579a0f4ef0ce3f9a793c45bb5a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.34
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=bfcf61fdc90b58f516c1e8352152ab9a" string(32) "bfcf61fdc90b58f516c1e8352152ab9a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bfcf61fdc90b58f516c1e8352152ab9a" [3]=> string(52) "current session_id: bfcf61fdc90b58f516c1e8352152ab9a" [4]=> string(52) "current session_id: bfcf61fdc90b58f516c1e8352152ab9a" [5]=> string(54) "write bfcf61fdc90b58f516c1e8352152ab9a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bfcf61fdc90b58f516c1e8352152ab9a" [9]=> string(40) "destroy bfcf61fdc90b58f516c1e8352152ab9a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.33
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=9232a2abf3853d98e77b220b659a607c" string(32) "9232a2abf3853d98e77b220b659a607c" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9232a2abf3853d98e77b220b659a607c" [3]=> string(52) "current session_id: 9232a2abf3853d98e77b220b659a607c" [4]=> string(52) "current session_id: 9232a2abf3853d98e77b220b659a607c" [5]=> string(54) "write 9232a2abf3853d98e77b220b659a607c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9232a2abf3853d98e77b220b659a607c" [9]=> string(40) "destroy 9232a2abf3853d98e77b220b659a607c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.32
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=a2cfdd22471c3414b245c42355adeea3" string(32) "a2cfdd22471c3414b245c42355adeea3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a2cfdd22471c3414b245c42355adeea3" [3]=> string(52) "current session_id: a2cfdd22471c3414b245c42355adeea3" [4]=> string(52) "current session_id: a2cfdd22471c3414b245c42355adeea3" [5]=> string(54) "write a2cfdd22471c3414b245c42355adeea3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a2cfdd22471c3414b245c42355adeea3" [9]=> string(40) "destroy a2cfdd22471c3414b245c42355adeea3" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.31
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=6c43168db3f131d9ef9ebe2c9157958b" string(32) "6c43168db3f131d9ef9ebe2c9157958b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6c43168db3f131d9ef9ebe2c9157958b" [3]=> string(52) "current session_id: 6c43168db3f131d9ef9ebe2c9157958b" [4]=> string(52) "current session_id: 6c43168db3f131d9ef9ebe2c9157958b" [5]=> string(54) "write 6c43168db3f131d9ef9ebe2c9157958b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6c43168db3f131d9ef9ebe2c9157958b" [9]=> string(40) "destroy 6c43168db3f131d9ef9ebe2c9157958b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.30
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=c6115a3bac16ea8c3bceac72aad8f1ce" string(32) "c6115a3bac16ea8c3bceac72aad8f1ce" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c6115a3bac16ea8c3bceac72aad8f1ce" [3]=> string(52) "current session_id: c6115a3bac16ea8c3bceac72aad8f1ce" [4]=> string(52) "current session_id: c6115a3bac16ea8c3bceac72aad8f1ce" [5]=> string(54) "write c6115a3bac16ea8c3bceac72aad8f1ce: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c6115a3bac16ea8c3bceac72aad8f1ce" [9]=> string(40) "destroy c6115a3bac16ea8c3bceac72aad8f1ce" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.29
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=1aec50e09861858245575f282660aa12" string(32) "1aec50e09861858245575f282660aa12" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1aec50e09861858245575f282660aa12" [3]=> string(52) "current session_id: 1aec50e09861858245575f282660aa12" [4]=> string(52) "current session_id: 1aec50e09861858245575f282660aa12" [5]=> string(54) "write 1aec50e09861858245575f282660aa12: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1aec50e09861858245575f282660aa12" [9]=> string(40) "destroy 1aec50e09861858245575f282660aa12" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.28
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=a90552c14fadb90b72058d5b6085d5cb" string(32) "a90552c14fadb90b72058d5b6085d5cb" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a90552c14fadb90b72058d5b6085d5cb" [3]=> string(52) "current session_id: a90552c14fadb90b72058d5b6085d5cb" [4]=> string(52) "current session_id: a90552c14fadb90b72058d5b6085d5cb" [5]=> string(54) "write a90552c14fadb90b72058d5b6085d5cb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a90552c14fadb90b72058d5b6085d5cb" [9]=> string(40) "destroy a90552c14fadb90b72058d5b6085d5cb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.27
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=b1ce6b501135b50281622514158185c8" string(32) "b1ce6b501135b50281622514158185c8" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b1ce6b501135b50281622514158185c8" [3]=> string(52) "current session_id: b1ce6b501135b50281622514158185c8" [4]=> string(52) "current session_id: b1ce6b501135b50281622514158185c8" [5]=> string(54) "write b1ce6b501135b50281622514158185c8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b1ce6b501135b50281622514158185c8" [9]=> string(40) "destroy b1ce6b501135b50281622514158185c8" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.26
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=8e166d341ba0885f20d84bab2106c7b9" string(32) "8e166d341ba0885f20d84bab2106c7b9" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8e166d341ba0885f20d84bab2106c7b9" [3]=> string(52) "current session_id: 8e166d341ba0885f20d84bab2106c7b9" [4]=> string(52) "current session_id: 8e166d341ba0885f20d84bab2106c7b9" [5]=> string(54) "write 8e166d341ba0885f20d84bab2106c7b9: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 8e166d341ba0885f20d84bab2106c7b9" [9]=> string(40) "destroy 8e166d341ba0885f20d84bab2106c7b9" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.25
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=964588d6a5b73d4bd59af88d9e989c8b" string(32) "964588d6a5b73d4bd59af88d9e989c8b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 964588d6a5b73d4bd59af88d9e989c8b" [3]=> string(52) "current session_id: 964588d6a5b73d4bd59af88d9e989c8b" [4]=> string(52) "current session_id: 964588d6a5b73d4bd59af88d9e989c8b" [5]=> string(54) "write 964588d6a5b73d4bd59af88d9e989c8b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 964588d6a5b73d4bd59af88d9e989c8b" [9]=> string(40) "destroy 964588d6a5b73d4bd59af88d9e989c8b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.24
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=ba6c4fb9bad3ffafc4d92862a08b414a" string(32) "ba6c4fb9bad3ffafc4d92862a08b414a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ba6c4fb9bad3ffafc4d92862a08b414a" [3]=> string(52) "current session_id: ba6c4fb9bad3ffafc4d92862a08b414a" [4]=> string(52) "current session_id: ba6c4fb9bad3ffafc4d92862a08b414a" [5]=> string(54) "write ba6c4fb9bad3ffafc4d92862a08b414a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ba6c4fb9bad3ffafc4d92862a08b414a" [9]=> string(40) "destroy ba6c4fb9bad3ffafc4d92862a08b414a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.23
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=53a9a903abc2716405cded6050f42a99" string(32) "53a9a903abc2716405cded6050f42a99" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 53a9a903abc2716405cded6050f42a99" [3]=> string(52) "current session_id: 53a9a903abc2716405cded6050f42a99" [4]=> string(52) "current session_id: 53a9a903abc2716405cded6050f42a99" [5]=> string(54) "write 53a9a903abc2716405cded6050f42a99: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 53a9a903abc2716405cded6050f42a99" [9]=> string(40) "destroy 53a9a903abc2716405cded6050f42a99" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.22
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=5d01b9efc617adf40c366ceefe892564" string(32) "5d01b9efc617adf40c366ceefe892564" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5d01b9efc617adf40c366ceefe892564" [3]=> string(52) "current session_id: 5d01b9efc617adf40c366ceefe892564" [4]=> string(52) "current session_id: 5d01b9efc617adf40c366ceefe892564" [5]=> string(54) "write 5d01b9efc617adf40c366ceefe892564: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5d01b9efc617adf40c366ceefe892564" [9]=> string(40) "destroy 5d01b9efc617adf40c366ceefe892564" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.21
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=31021b67ffcb31d86f7a52710a18acd0" string(32) "31021b67ffcb31d86f7a52710a18acd0" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 31021b67ffcb31d86f7a52710a18acd0" [3]=> string(52) "current session_id: 31021b67ffcb31d86f7a52710a18acd0" [4]=> string(52) "current session_id: 31021b67ffcb31d86f7a52710a18acd0" [5]=> string(54) "write 31021b67ffcb31d86f7a52710a18acd0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 31021b67ffcb31d86f7a52710a18acd0" [9]=> string(40) "destroy 31021b67ffcb31d86f7a52710a18acd0" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.20
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=4d0a9a1adedb8539bca1fcde32b7da25" string(32) "4d0a9a1adedb8539bca1fcde32b7da25" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4d0a9a1adedb8539bca1fcde32b7da25" [3]=> string(52) "current session_id: 4d0a9a1adedb8539bca1fcde32b7da25" [4]=> string(52) "current session_id: 4d0a9a1adedb8539bca1fcde32b7da25" [5]=> string(54) "write 4d0a9a1adedb8539bca1fcde32b7da25: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4d0a9a1adedb8539bca1fcde32b7da25" [9]=> string(40) "destroy 4d0a9a1adedb8539bca1fcde32b7da25" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.19
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=b1d91890aeebecc84f12a94542dc3e06" string(32) "b1d91890aeebecc84f12a94542dc3e06" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b1d91890aeebecc84f12a94542dc3e06" [3]=> string(52) "current session_id: b1d91890aeebecc84f12a94542dc3e06" [4]=> string(52) "current session_id: b1d91890aeebecc84f12a94542dc3e06" [5]=> string(54) "write b1d91890aeebecc84f12a94542dc3e06: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b1d91890aeebecc84f12a94542dc3e06" [9]=> string(40) "destroy b1d91890aeebecc84f12a94542dc3e06" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.18
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=102ab04efe76c0a38e2438be1c417243" string(32) "102ab04efe76c0a38e2438be1c417243" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 102ab04efe76c0a38e2438be1c417243" [3]=> string(52) "current session_id: 102ab04efe76c0a38e2438be1c417243" [4]=> string(52) "current session_id: 102ab04efe76c0a38e2438be1c417243" [5]=> string(54) "write 102ab04efe76c0a38e2438be1c417243: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 102ab04efe76c0a38e2438be1c417243" [9]=> string(40) "destroy 102ab04efe76c0a38e2438be1c417243" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.17
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=97d121bc609e8d14c2f2fe3a84703a0f" string(32) "97d121bc609e8d14c2f2fe3a84703a0f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 97d121bc609e8d14c2f2fe3a84703a0f" [3]=> string(52) "current session_id: 97d121bc609e8d14c2f2fe3a84703a0f" [4]=> string(52) "current session_id: 97d121bc609e8d14c2f2fe3a84703a0f" [5]=> string(54) "write 97d121bc609e8d14c2f2fe3a84703a0f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 97d121bc609e8d14c2f2fe3a84703a0f" [9]=> string(40) "destroy 97d121bc609e8d14c2f2fe3a84703a0f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.16
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d66e30b445a707d899188daeb68d75a7" string(32) "d66e30b445a707d899188daeb68d75a7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d66e30b445a707d899188daeb68d75a7" [3]=> string(52) "current session_id: d66e30b445a707d899188daeb68d75a7" [4]=> string(52) "current session_id: d66e30b445a707d899188daeb68d75a7" [5]=> string(54) "write d66e30b445a707d899188daeb68d75a7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d66e30b445a707d899188daeb68d75a7" [9]=> string(40) "destroy d66e30b445a707d899188daeb68d75a7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.15
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=f9852c68187d61ce9b905ab15ea1000c" string(32) "f9852c68187d61ce9b905ab15ea1000c" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f9852c68187d61ce9b905ab15ea1000c" [3]=> string(52) "current session_id: f9852c68187d61ce9b905ab15ea1000c" [4]=> string(52) "current session_id: f9852c68187d61ce9b905ab15ea1000c" [5]=> string(54) "write f9852c68187d61ce9b905ab15ea1000c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f9852c68187d61ce9b905ab15ea1000c" [9]=> string(40) "destroy f9852c68187d61ce9b905ab15ea1000c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.14
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=827e9615b5b82cd6078b886c5bdbc1b8" string(32) "827e9615b5b82cd6078b886c5bdbc1b8" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 827e9615b5b82cd6078b886c5bdbc1b8" [3]=> string(52) "current session_id: 827e9615b5b82cd6078b886c5bdbc1b8" [4]=> string(52) "current session_id: 827e9615b5b82cd6078b886c5bdbc1b8" [5]=> string(54) "write 827e9615b5b82cd6078b886c5bdbc1b8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 827e9615b5b82cd6078b886c5bdbc1b8" [9]=> string(40) "destroy 827e9615b5b82cd6078b886c5bdbc1b8" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.13
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=bc550f6e94f5e87b7ec88ba8f45a90eb" string(32) "bc550f6e94f5e87b7ec88ba8f45a90eb" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bc550f6e94f5e87b7ec88ba8f45a90eb" [3]=> string(52) "current session_id: bc550f6e94f5e87b7ec88ba8f45a90eb" [4]=> string(52) "current session_id: bc550f6e94f5e87b7ec88ba8f45a90eb" [5]=> string(54) "write bc550f6e94f5e87b7ec88ba8f45a90eb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bc550f6e94f5e87b7ec88ba8f45a90eb" [9]=> string(40) "destroy bc550f6e94f5e87b7ec88ba8f45a90eb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.12
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d5bfa1397d02d2f2d386bc45d4ea4b19" string(32) "d5bfa1397d02d2f2d386bc45d4ea4b19" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d5bfa1397d02d2f2d386bc45d4ea4b19" [3]=> string(52) "current session_id: d5bfa1397d02d2f2d386bc45d4ea4b19" [4]=> string(52) "current session_id: d5bfa1397d02d2f2d386bc45d4ea4b19" [5]=> string(54) "write d5bfa1397d02d2f2d386bc45d4ea4b19: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d5bfa1397d02d2f2d386bc45d4ea4b19" [9]=> string(40) "destroy d5bfa1397d02d2f2d386bc45d4ea4b19" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.11
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=57cec35926a6b5fc9966467116ea17db" string(32) "57cec35926a6b5fc9966467116ea17db" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 57cec35926a6b5fc9966467116ea17db" [3]=> string(52) "current session_id: 57cec35926a6b5fc9966467116ea17db" [4]=> string(52) "current session_id: 57cec35926a6b5fc9966467116ea17db" [5]=> string(54) "write 57cec35926a6b5fc9966467116ea17db: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 57cec35926a6b5fc9966467116ea17db" [9]=> string(40) "destroy 57cec35926a6b5fc9966467116ea17db" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.10
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=680dbe6931d794e001f9d5e27b34d6ef" string(32) "680dbe6931d794e001f9d5e27b34d6ef" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 680dbe6931d794e001f9d5e27b34d6ef" [3]=> string(52) "current session_id: 680dbe6931d794e001f9d5e27b34d6ef" [4]=> string(52) "current session_id: 680dbe6931d794e001f9d5e27b34d6ef" [5]=> string(54) "write 680dbe6931d794e001f9d5e27b34d6ef: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 680dbe6931d794e001f9d5e27b34d6ef" [9]=> string(40) "destroy 680dbe6931d794e001f9d5e27b34d6ef" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.9
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=3657c1cef13e1f82cee48ffe0255bca4" string(32) "3657c1cef13e1f82cee48ffe0255bca4" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3657c1cef13e1f82cee48ffe0255bca4" [3]=> string(52) "current session_id: 3657c1cef13e1f82cee48ffe0255bca4" [4]=> string(52) "current session_id: 3657c1cef13e1f82cee48ffe0255bca4" [5]=> string(54) "write 3657c1cef13e1f82cee48ffe0255bca4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3657c1cef13e1f82cee48ffe0255bca4" [9]=> string(40) "destroy 3657c1cef13e1f82cee48ffe0255bca4" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.8
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=2660184c076d77ca6e312ccb0003b97c" string(32) "2660184c076d77ca6e312ccb0003b97c" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2660184c076d77ca6e312ccb0003b97c" [3]=> string(52) "current session_id: 2660184c076d77ca6e312ccb0003b97c" [4]=> string(52) "current session_id: 2660184c076d77ca6e312ccb0003b97c" [5]=> string(54) "write 2660184c076d77ca6e312ccb0003b97c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 2660184c076d77ca6e312ccb0003b97c" [9]=> string(40) "destroy 2660184c076d77ca6e312ccb0003b97c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.7
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=c2856f76e42355f523d1be0c4d3c4350" string(32) "c2856f76e42355f523d1be0c4d3c4350" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c2856f76e42355f523d1be0c4d3c4350" [3]=> string(52) "current session_id: c2856f76e42355f523d1be0c4d3c4350" [4]=> string(52) "current session_id: c2856f76e42355f523d1be0c4d3c4350" [5]=> string(54) "write c2856f76e42355f523d1be0c4d3c4350: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c2856f76e42355f523d1be0c4d3c4350" [9]=> string(40) "destroy c2856f76e42355f523d1be0c4d3c4350" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.6
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=f760df9f00c4f10a49623152836c849a" string(32) "f760df9f00c4f10a49623152836c849a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f760df9f00c4f10a49623152836c849a" [3]=> string(52) "current session_id: f760df9f00c4f10a49623152836c849a" [4]=> string(52) "current session_id: f760df9f00c4f10a49623152836c849a" [5]=> string(54) "write f760df9f00c4f10a49623152836c849a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f760df9f00c4f10a49623152836c849a" [9]=> string(40) "destroy f760df9f00c4f10a49623152836c849a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.5
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=b4ce327d24d2b6e0890f19201fe7f654" string(32) "b4ce327d24d2b6e0890f19201fe7f654" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b4ce327d24d2b6e0890f19201fe7f654" [3]=> string(52) "current session_id: b4ce327d24d2b6e0890f19201fe7f654" [4]=> string(52) "current session_id: b4ce327d24d2b6e0890f19201fe7f654" [5]=> string(54) "write b4ce327d24d2b6e0890f19201fe7f654: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b4ce327d24d2b6e0890f19201fe7f654" [9]=> string(40) "destroy b4ce327d24d2b6e0890f19201fe7f654" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.4
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=d00576e791b5b9c085190880fa15162e" string(32) "d00576e791b5b9c085190880fa15162e" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d00576e791b5b9c085190880fa15162e" [3]=> string(52) "current session_id: d00576e791b5b9c085190880fa15162e" [4]=> string(52) "current session_id: d00576e791b5b9c085190880fa15162e" [5]=> string(54) "write d00576e791b5b9c085190880fa15162e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d00576e791b5b9c085190880fa15162e" [9]=> string(40) "destroy d00576e791b5b9c085190880fa15162e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.3
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=e7d6160ca313abe958f34b4068dc84f2" string(32) "e7d6160ca313abe958f34b4068dc84f2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e7d6160ca313abe958f34b4068dc84f2" [3]=> string(52) "current session_id: e7d6160ca313abe958f34b4068dc84f2" [4]=> string(52) "current session_id: e7d6160ca313abe958f34b4068dc84f2" [5]=> string(54) "write e7d6160ca313abe958f34b4068dc84f2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e7d6160ca313abe958f34b4068dc84f2" [9]=> string(40) "destroy e7d6160ca313abe958f34b4068dc84f2" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.2
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=9fba379389f7c149966279431946dd86" string(32) "9fba379389f7c149966279431946dd86" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9fba379389f7c149966279431946dd86" [3]=> string(52) "current session_id: 9fba379389f7c149966279431946dd86" [4]=> string(52) "current session_id: 9fba379389f7c149966279431946dd86" [5]=> string(54) "write 9fba379389f7c149966279431946dd86: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9fba379389f7c149966279431946dd86" [9]=> string(40) "destroy 9fba379389f7c149966279431946dd86" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.1
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=1026e62e7ba1280427d0090d6442b976" string(32) "1026e62e7ba1280427d0090d6442b976" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1026e62e7ba1280427d0090d6442b976" [3]=> string(52) "current session_id: 1026e62e7ba1280427d0090d6442b976" [4]=> string(52) "current session_id: 1026e62e7ba1280427d0090d6442b976" [5]=> string(54) "write 1026e62e7ba1280427d0090d6442b976: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1026e62e7ba1280427d0090d6442b976" [9]=> string(40) "destroy 1026e62e7ba1280427d0090d6442b976" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.0
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/NZSS7 on line 60 string(42) "PHPSESSID=0fedcebbe0d99d05a82ed1428a973b51" string(32) "0fedcebbe0d99d05a82ed1428a973b51" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 68 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/NZSS7:44) in /in/NZSS7 on line 75 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0fedcebbe0d99d05a82ed1428a973b51" [3]=> string(52) "current session_id: 0fedcebbe0d99d05a82ed1428a973b51" [4]=> string(52) "current session_id: 0fedcebbe0d99d05a82ed1428a973b51" [5]=> string(54) "write 0fedcebbe0d99d05a82ed1428a973b51: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0fedcebbe0d99d05a82ed1428a973b51" [9]=> string(40) "destroy 0fedcebbe0d99d05a82ed1428a973b51" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/NZSS7 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/NZSS7 on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/NZSS7 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/NZSS7 on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/NZSS7 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/NZSS7 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/NZSS7 on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/NZSS7 on line 4
Process exited with code 255.

preferences:
282.74 ms | 401 KiB | 458 Q