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(); var_dump(session_status()); session_destroy(); var_dump($_SESSION); $handler->messages[] = var_export($_SESSION, true); $handler->messages[] = 'current session_id: ' . var_export(session_id(), true); session_id('explicit-session-id'); session_start(); $_SESSION['john'] = 'doe';
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Return type of MySessionHandler::open($savePath, $sessionName) should either be compatible with SessionHandlerInterface::open(string $path, string $name): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/vP28Z 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/vP28Z 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/vP28Z 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/vP28Z 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/vP28Z 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/vP28Z 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/vP28Z on line 50 Warning: session_start(): Session cannot be started after headers have already been sent in /in/vP28Z on line 55 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/vP28Z on line 60 Fatal error: Uncaught Error: Undefined constant "SID" in /in/vP28Z:64 Stack trace: #0 /in/vP28Z(64): constant('SID') #1 {main} thrown in /in/vP28Z 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/vP28Z on line 50 Warning: session_start(): Session cannot be started after headers have already been sent in /in/vP28Z on line 55 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/vP28Z on line 60 Fatal error: Uncaught Error: Undefined constant "SID" in /in/vP28Z:64 Stack trace: #0 /in/vP28Z(64): constant('SID') #1 {main} thrown in /in/vP28Z 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.16 - 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/vP28Z on line 50 Warning: session_start(): Cannot start session when headers already sent in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/vP28Z on line 60 Warning: constant(): Couldn't find constant SID in /in/vP28Z on line 64 NULL string(0) "" int(1) Warning: session_start(): Cannot start session when headers already sent in /in/vP28Z on line 68 int(1) Warning: session_destroy(): Trying to destroy uninitialized session in /in/vP28Z on line 70 array(2) { ["before"]=> string(5) "start" ["foo"]=> string(3) "bar" } Warning: session_id(): Cannot change session id when headers already sent in /in/vP28Z on line 76 Warning: session_start(): Cannot start session when headers already sent in /in/vP28Z on line 77 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.20
int(0) int(1) int(2) int(1) Warning: session_start(): Session callback expects true/false return value in /in/vP28Z on line 55 Warning: session_start(): Session callback expects true/false return value in /in/vP28Z on line 55 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/vP28Z on line 55
Process exited with code 255.
Output for 7.0.0 - 7.0.20
int(0) int(1) int(2) int(1) Warning: session_start(): Session callback expects true/false return value in /in/vP28Z on line 55 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/vP28Z 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.28
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=34a20735fbe31a6e623506d59096b213" string(32) "34a20735fbe31a6e623506d59096b213" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 34a20735fbe31a6e623506d59096b213" [3]=> string(52) "current session_id: 34a20735fbe31a6e623506d59096b213" [4]=> string(52) "current session_id: 34a20735fbe31a6e623506d59096b213" [5]=> string(54) "write 34a20735fbe31a6e623506d59096b213: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 34a20735fbe31a6e623506d59096b213" [9]=> string(40) "destroy 34a20735fbe31a6e623506d59096b213" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=efb4c153dfa26f2cd20fa750eba77508" string(32) "efb4c153dfa26f2cd20fa750eba77508" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read efb4c153dfa26f2cd20fa750eba77508" [3]=> string(52) "current session_id: efb4c153dfa26f2cd20fa750eba77508" [4]=> string(52) "current session_id: efb4c153dfa26f2cd20fa750eba77508" [5]=> string(54) "write efb4c153dfa26f2cd20fa750eba77508: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read efb4c153dfa26f2cd20fa750eba77508" [9]=> string(40) "destroy efb4c153dfa26f2cd20fa750eba77508" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=e82aaa0cd4a8c8f5e8ed609317d79a42" string(32) "e82aaa0cd4a8c8f5e8ed609317d79a42" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e82aaa0cd4a8c8f5e8ed609317d79a42" [3]=> string(7) "gc 1440" [4]=> string(52) "current session_id: e82aaa0cd4a8c8f5e8ed609317d79a42" [5]=> string(52) "current session_id: e82aaa0cd4a8c8f5e8ed609317d79a42" [6]=> string(54) "write e82aaa0cd4a8c8f5e8ed609317d79a42: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read e82aaa0cd4a8c8f5e8ed609317d79a42" [10]=> string(40) "destroy e82aaa0cd4a8c8f5e8ed609317d79a42" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.19
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=1d757f567072f63fe77a58328e7673a5" string(32) "1d757f567072f63fe77a58328e7673a5" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1d757f567072f63fe77a58328e7673a5" [3]=> string(52) "current session_id: 1d757f567072f63fe77a58328e7673a5" [4]=> string(52) "current session_id: 1d757f567072f63fe77a58328e7673a5" [5]=> string(54) "write 1d757f567072f63fe77a58328e7673a5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1d757f567072f63fe77a58328e7673a5" [9]=> string(40) "destroy 1d757f567072f63fe77a58328e7673a5" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=c54e8c08dc0670fa5b5860f00f6985dd" string(32) "c54e8c08dc0670fa5b5860f00f6985dd" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c54e8c08dc0670fa5b5860f00f6985dd" [3]=> string(52) "current session_id: c54e8c08dc0670fa5b5860f00f6985dd" [4]=> string(52) "current session_id: c54e8c08dc0670fa5b5860f00f6985dd" [5]=> string(54) "write c54e8c08dc0670fa5b5860f00f6985dd: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c54e8c08dc0670fa5b5860f00f6985dd" [9]=> string(40) "destroy c54e8c08dc0670fa5b5860f00f6985dd" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=d83b7fbb89d1a12ec655305223addce7" string(32) "d83b7fbb89d1a12ec655305223addce7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d83b7fbb89d1a12ec655305223addce7" [3]=> string(52) "current session_id: d83b7fbb89d1a12ec655305223addce7" [4]=> string(52) "current session_id: d83b7fbb89d1a12ec655305223addce7" [5]=> string(54) "write d83b7fbb89d1a12ec655305223addce7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d83b7fbb89d1a12ec655305223addce7" [9]=> string(40) "destroy d83b7fbb89d1a12ec655305223addce7" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=ec85bf110a1e149a30a8b1e92505ab62" string(32) "ec85bf110a1e149a30a8b1e92505ab62" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ec85bf110a1e149a30a8b1e92505ab62" [3]=> string(52) "current session_id: ec85bf110a1e149a30a8b1e92505ab62" [4]=> string(52) "current session_id: ec85bf110a1e149a30a8b1e92505ab62" [5]=> string(54) "write ec85bf110a1e149a30a8b1e92505ab62: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ec85bf110a1e149a30a8b1e92505ab62" [9]=> string(40) "destroy ec85bf110a1e149a30a8b1e92505ab62" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=e03077cfc98b2eeabd8120a002a71b6e" string(32) "e03077cfc98b2eeabd8120a002a71b6e" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e03077cfc98b2eeabd8120a002a71b6e" [3]=> string(52) "current session_id: e03077cfc98b2eeabd8120a002a71b6e" [4]=> string(52) "current session_id: e03077cfc98b2eeabd8120a002a71b6e" [5]=> string(54) "write e03077cfc98b2eeabd8120a002a71b6e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e03077cfc98b2eeabd8120a002a71b6e" [9]=> string(40) "destroy e03077cfc98b2eeabd8120a002a71b6e" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=eb4644b4f9af44c78171e91426ff13a2" string(32) "eb4644b4f9af44c78171e91426ff13a2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read eb4644b4f9af44c78171e91426ff13a2" [3]=> string(52) "current session_id: eb4644b4f9af44c78171e91426ff13a2" [4]=> string(52) "current session_id: eb4644b4f9af44c78171e91426ff13a2" [5]=> string(54) "write eb4644b4f9af44c78171e91426ff13a2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read eb4644b4f9af44c78171e91426ff13a2" [9]=> string(40) "destroy eb4644b4f9af44c78171e91426ff13a2" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=0893103ec130a33ff7001afe76212ca2" string(32) "0893103ec130a33ff7001afe76212ca2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0893103ec130a33ff7001afe76212ca2" [3]=> string(52) "current session_id: 0893103ec130a33ff7001afe76212ca2" [4]=> string(52) "current session_id: 0893103ec130a33ff7001afe76212ca2" [5]=> string(54) "write 0893103ec130a33ff7001afe76212ca2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0893103ec130a33ff7001afe76212ca2" [9]=> string(40) "destroy 0893103ec130a33ff7001afe76212ca2" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=26a9a816bfb775e1d01ae759a83f2680" string(32) "26a9a816bfb775e1d01ae759a83f2680" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 26a9a816bfb775e1d01ae759a83f2680" [3]=> string(52) "current session_id: 26a9a816bfb775e1d01ae759a83f2680" [4]=> string(52) "current session_id: 26a9a816bfb775e1d01ae759a83f2680" [5]=> string(54) "write 26a9a816bfb775e1d01ae759a83f2680: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 26a9a816bfb775e1d01ae759a83f2680" [9]=> string(40) "destroy 26a9a816bfb775e1d01ae759a83f2680" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=a243daf1e0d81d29b52cc8a0e88de52a" string(32) "a243daf1e0d81d29b52cc8a0e88de52a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a243daf1e0d81d29b52cc8a0e88de52a" [3]=> string(52) "current session_id: a243daf1e0d81d29b52cc8a0e88de52a" [4]=> string(52) "current session_id: a243daf1e0d81d29b52cc8a0e88de52a" [5]=> string(54) "write a243daf1e0d81d29b52cc8a0e88de52a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a243daf1e0d81d29b52cc8a0e88de52a" [9]=> string(40) "destroy a243daf1e0d81d29b52cc8a0e88de52a" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=ff5c20dc3eafa5f8c930f8098a36d87f" string(32) "ff5c20dc3eafa5f8c930f8098a36d87f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ff5c20dc3eafa5f8c930f8098a36d87f" [3]=> string(52) "current session_id: ff5c20dc3eafa5f8c930f8098a36d87f" [4]=> string(52) "current session_id: ff5c20dc3eafa5f8c930f8098a36d87f" [5]=> string(54) "write ff5c20dc3eafa5f8c930f8098a36d87f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ff5c20dc3eafa5f8c930f8098a36d87f" [9]=> string(40) "destroy ff5c20dc3eafa5f8c930f8098a36d87f" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=74d0916f6abfbe23a85920b42f788f20" string(32) "74d0916f6abfbe23a85920b42f788f20" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 74d0916f6abfbe23a85920b42f788f20" [3]=> string(52) "current session_id: 74d0916f6abfbe23a85920b42f788f20" [4]=> string(52) "current session_id: 74d0916f6abfbe23a85920b42f788f20" [5]=> string(54) "write 74d0916f6abfbe23a85920b42f788f20: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 74d0916f6abfbe23a85920b42f788f20" [9]=> string(40) "destroy 74d0916f6abfbe23a85920b42f788f20" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=4f6ecf768bd6e9123e67e2ce7bc1b17a" string(32) "4f6ecf768bd6e9123e67e2ce7bc1b17a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4f6ecf768bd6e9123e67e2ce7bc1b17a" [3]=> string(52) "current session_id: 4f6ecf768bd6e9123e67e2ce7bc1b17a" [4]=> string(52) "current session_id: 4f6ecf768bd6e9123e67e2ce7bc1b17a" [5]=> string(54) "write 4f6ecf768bd6e9123e67e2ce7bc1b17a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4f6ecf768bd6e9123e67e2ce7bc1b17a" [9]=> string(40) "destroy 4f6ecf768bd6e9123e67e2ce7bc1b17a" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=62be9975c231ab989e74fa975d616846" string(32) "62be9975c231ab989e74fa975d616846" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 62be9975c231ab989e74fa975d616846" [3]=> string(52) "current session_id: 62be9975c231ab989e74fa975d616846" [4]=> string(52) "current session_id: 62be9975c231ab989e74fa975d616846" [5]=> string(54) "write 62be9975c231ab989e74fa975d616846: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 62be9975c231ab989e74fa975d616846" [9]=> string(40) "destroy 62be9975c231ab989e74fa975d616846" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=baae60bc7eacf425e9c2d4e7b5bb83ba" string(32) "baae60bc7eacf425e9c2d4e7b5bb83ba" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read baae60bc7eacf425e9c2d4e7b5bb83ba" [3]=> string(52) "current session_id: baae60bc7eacf425e9c2d4e7b5bb83ba" [4]=> string(52) "current session_id: baae60bc7eacf425e9c2d4e7b5bb83ba" [5]=> string(54) "write baae60bc7eacf425e9c2d4e7b5bb83ba: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read baae60bc7eacf425e9c2d4e7b5bb83ba" [9]=> string(40) "destroy baae60bc7eacf425e9c2d4e7b5bb83ba" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=dca6cc859c5c550684d53817374e88ab" string(32) "dca6cc859c5c550684d53817374e88ab" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dca6cc859c5c550684d53817374e88ab" [3]=> string(52) "current session_id: dca6cc859c5c550684d53817374e88ab" [4]=> string(52) "current session_id: dca6cc859c5c550684d53817374e88ab" [5]=> string(54) "write dca6cc859c5c550684d53817374e88ab: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read dca6cc859c5c550684d53817374e88ab" [9]=> string(7) "gc 1440" [10]=> string(40) "destroy dca6cc859c5c550684d53817374e88ab" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.32
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=b65100a6986e4d1c661ecf40e84e371d" string(32) "b65100a6986e4d1c661ecf40e84e371d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b65100a6986e4d1c661ecf40e84e371d" [3]=> string(52) "current session_id: b65100a6986e4d1c661ecf40e84e371d" [4]=> string(52) "current session_id: b65100a6986e4d1c661ecf40e84e371d" [5]=> string(54) "write b65100a6986e4d1c661ecf40e84e371d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b65100a6986e4d1c661ecf40e84e371d" [9]=> string(40) "destroy b65100a6986e4d1c661ecf40e84e371d" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=c3e234d4a5d66e3d1f628ab94ae35384" string(32) "c3e234d4a5d66e3d1f628ab94ae35384" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c3e234d4a5d66e3d1f628ab94ae35384" [3]=> string(52) "current session_id: c3e234d4a5d66e3d1f628ab94ae35384" [4]=> string(52) "current session_id: c3e234d4a5d66e3d1f628ab94ae35384" [5]=> string(54) "write c3e234d4a5d66e3d1f628ab94ae35384: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c3e234d4a5d66e3d1f628ab94ae35384" [9]=> string(40) "destroy c3e234d4a5d66e3d1f628ab94ae35384" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=98ee5080d8a07e8db4f5788b9860faf9" string(32) "98ee5080d8a07e8db4f5788b9860faf9" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 98ee5080d8a07e8db4f5788b9860faf9" [3]=> string(52) "current session_id: 98ee5080d8a07e8db4f5788b9860faf9" [4]=> string(52) "current session_id: 98ee5080d8a07e8db4f5788b9860faf9" [5]=> string(54) "write 98ee5080d8a07e8db4f5788b9860faf9: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 98ee5080d8a07e8db4f5788b9860faf9" [9]=> string(40) "destroy 98ee5080d8a07e8db4f5788b9860faf9" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=775e233d0f0af80df452ac5c87007ca5" string(32) "775e233d0f0af80df452ac5c87007ca5" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 775e233d0f0af80df452ac5c87007ca5" [3]=> string(52) "current session_id: 775e233d0f0af80df452ac5c87007ca5" [4]=> string(52) "current session_id: 775e233d0f0af80df452ac5c87007ca5" [5]=> string(54) "write 775e233d0f0af80df452ac5c87007ca5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 775e233d0f0af80df452ac5c87007ca5" [9]=> string(40) "destroy 775e233d0f0af80df452ac5c87007ca5" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=63cfdc2f5e8bc17569ff5c6c98764e1e" string(32) "63cfdc2f5e8bc17569ff5c6c98764e1e" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 63cfdc2f5e8bc17569ff5c6c98764e1e" [3]=> string(52) "current session_id: 63cfdc2f5e8bc17569ff5c6c98764e1e" [4]=> string(52) "current session_id: 63cfdc2f5e8bc17569ff5c6c98764e1e" [5]=> string(54) "write 63cfdc2f5e8bc17569ff5c6c98764e1e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 63cfdc2f5e8bc17569ff5c6c98764e1e" [9]=> string(40) "destroy 63cfdc2f5e8bc17569ff5c6c98764e1e" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=468398e303bf36c0746dadcebab378a8" string(32) "468398e303bf36c0746dadcebab378a8" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 468398e303bf36c0746dadcebab378a8" [3]=> string(52) "current session_id: 468398e303bf36c0746dadcebab378a8" [4]=> string(52) "current session_id: 468398e303bf36c0746dadcebab378a8" [5]=> string(54) "write 468398e303bf36c0746dadcebab378a8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 468398e303bf36c0746dadcebab378a8" [9]=> string(40) "destroy 468398e303bf36c0746dadcebab378a8" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=b2724c2612f342a65d7fc1bfae622f2b" string(32) "b2724c2612f342a65d7fc1bfae622f2b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b2724c2612f342a65d7fc1bfae622f2b" [3]=> string(52) "current session_id: b2724c2612f342a65d7fc1bfae622f2b" [4]=> string(52) "current session_id: b2724c2612f342a65d7fc1bfae622f2b" [5]=> string(54) "write b2724c2612f342a65d7fc1bfae622f2b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b2724c2612f342a65d7fc1bfae622f2b" [9]=> string(40) "destroy b2724c2612f342a65d7fc1bfae622f2b" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=9d6579f87cf946adbe0655a391ca0108" string(32) "9d6579f87cf946adbe0655a391ca0108" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9d6579f87cf946adbe0655a391ca0108" [3]=> string(52) "current session_id: 9d6579f87cf946adbe0655a391ca0108" [4]=> string(52) "current session_id: 9d6579f87cf946adbe0655a391ca0108" [5]=> string(54) "write 9d6579f87cf946adbe0655a391ca0108: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9d6579f87cf946adbe0655a391ca0108" [9]=> string(40) "destroy 9d6579f87cf946adbe0655a391ca0108" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=9741826615f82b8a4b345f2a5ba5100f" string(32) "9741826615f82b8a4b345f2a5ba5100f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9741826615f82b8a4b345f2a5ba5100f" [3]=> string(52) "current session_id: 9741826615f82b8a4b345f2a5ba5100f" [4]=> string(52) "current session_id: 9741826615f82b8a4b345f2a5ba5100f" [5]=> string(54) "write 9741826615f82b8a4b345f2a5ba5100f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9741826615f82b8a4b345f2a5ba5100f" [9]=> string(40) "destroy 9741826615f82b8a4b345f2a5ba5100f" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=fd704e97a05f6b0da323eeba7045ac43" string(32) "fd704e97a05f6b0da323eeba7045ac43" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fd704e97a05f6b0da323eeba7045ac43" [3]=> string(52) "current session_id: fd704e97a05f6b0da323eeba7045ac43" [4]=> string(52) "current session_id: fd704e97a05f6b0da323eeba7045ac43" [5]=> string(54) "write fd704e97a05f6b0da323eeba7045ac43: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read fd704e97a05f6b0da323eeba7045ac43" [9]=> string(40) "destroy fd704e97a05f6b0da323eeba7045ac43" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=466c1ccc65d86396a6933728297540e9" string(32) "466c1ccc65d86396a6933728297540e9" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 466c1ccc65d86396a6933728297540e9" [3]=> string(52) "current session_id: 466c1ccc65d86396a6933728297540e9" [4]=> string(52) "current session_id: 466c1ccc65d86396a6933728297540e9" [5]=> string(54) "write 466c1ccc65d86396a6933728297540e9: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 466c1ccc65d86396a6933728297540e9" [9]=> string(40) "destroy 466c1ccc65d86396a6933728297540e9" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=39d314e808439eaf7602568a6d9dffde" string(32) "39d314e808439eaf7602568a6d9dffde" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 39d314e808439eaf7602568a6d9dffde" [3]=> string(52) "current session_id: 39d314e808439eaf7602568a6d9dffde" [4]=> string(52) "current session_id: 39d314e808439eaf7602568a6d9dffde" [5]=> string(54) "write 39d314e808439eaf7602568a6d9dffde: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 39d314e808439eaf7602568a6d9dffde" [9]=> string(40) "destroy 39d314e808439eaf7602568a6d9dffde" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=9f578fc332935a506d2565d38a5778a1" string(32) "9f578fc332935a506d2565d38a5778a1" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9f578fc332935a506d2565d38a5778a1" [3]=> string(52) "current session_id: 9f578fc332935a506d2565d38a5778a1" [4]=> string(52) "current session_id: 9f578fc332935a506d2565d38a5778a1" [5]=> string(54) "write 9f578fc332935a506d2565d38a5778a1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9f578fc332935a506d2565d38a5778a1" [9]=> string(40) "destroy 9f578fc332935a506d2565d38a5778a1" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=148ef6fdc30663a624337983c6edd688" string(32) "148ef6fdc30663a624337983c6edd688" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 148ef6fdc30663a624337983c6edd688" [3]=> string(52) "current session_id: 148ef6fdc30663a624337983c6edd688" [4]=> string(52) "current session_id: 148ef6fdc30663a624337983c6edd688" [5]=> string(54) "write 148ef6fdc30663a624337983c6edd688: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 148ef6fdc30663a624337983c6edd688" [9]=> string(40) "destroy 148ef6fdc30663a624337983c6edd688" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=93526e7ac2c0c475f8404236b0373d95" string(32) "93526e7ac2c0c475f8404236b0373d95" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 93526e7ac2c0c475f8404236b0373d95" [3]=> string(52) "current session_id: 93526e7ac2c0c475f8404236b0373d95" [4]=> string(52) "current session_id: 93526e7ac2c0c475f8404236b0373d95" [5]=> string(54) "write 93526e7ac2c0c475f8404236b0373d95: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 93526e7ac2c0c475f8404236b0373d95" [9]=> string(40) "destroy 93526e7ac2c0c475f8404236b0373d95" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=70230b853bc057057090fef81f451418" string(32) "70230b853bc057057090fef81f451418" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 70230b853bc057057090fef81f451418" [3]=> string(52) "current session_id: 70230b853bc057057090fef81f451418" [4]=> string(52) "current session_id: 70230b853bc057057090fef81f451418" [5]=> string(54) "write 70230b853bc057057090fef81f451418: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 70230b853bc057057090fef81f451418" [9]=> string(40) "destroy 70230b853bc057057090fef81f451418" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=f83e88cf7443552910faf4d1a9dd401b" string(32) "f83e88cf7443552910faf4d1a9dd401b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f83e88cf7443552910faf4d1a9dd401b" [3]=> string(52) "current session_id: f83e88cf7443552910faf4d1a9dd401b" [4]=> string(52) "current session_id: f83e88cf7443552910faf4d1a9dd401b" [5]=> string(54) "write f83e88cf7443552910faf4d1a9dd401b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f83e88cf7443552910faf4d1a9dd401b" [9]=> string(40) "destroy f83e88cf7443552910faf4d1a9dd401b" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=550987da00d5c3bea8dc37ce6f228e60" string(32) "550987da00d5c3bea8dc37ce6f228e60" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 550987da00d5c3bea8dc37ce6f228e60" [3]=> string(52) "current session_id: 550987da00d5c3bea8dc37ce6f228e60" [4]=> string(52) "current session_id: 550987da00d5c3bea8dc37ce6f228e60" [5]=> string(54) "write 550987da00d5c3bea8dc37ce6f228e60: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 550987da00d5c3bea8dc37ce6f228e60" [9]=> string(40) "destroy 550987da00d5c3bea8dc37ce6f228e60" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=0ab78136d023f24beaf7cc2f1158a8f5" string(32) "0ab78136d023f24beaf7cc2f1158a8f5" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0ab78136d023f24beaf7cc2f1158a8f5" [3]=> string(52) "current session_id: 0ab78136d023f24beaf7cc2f1158a8f5" [4]=> string(52) "current session_id: 0ab78136d023f24beaf7cc2f1158a8f5" [5]=> string(54) "write 0ab78136d023f24beaf7cc2f1158a8f5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0ab78136d023f24beaf7cc2f1158a8f5" [9]=> string(40) "destroy 0ab78136d023f24beaf7cc2f1158a8f5" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=9840724d739d20f746d63277d22d645a" string(32) "9840724d739d20f746d63277d22d645a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9840724d739d20f746d63277d22d645a" [3]=> string(52) "current session_id: 9840724d739d20f746d63277d22d645a" [4]=> string(52) "current session_id: 9840724d739d20f746d63277d22d645a" [5]=> string(54) "write 9840724d739d20f746d63277d22d645a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9840724d739d20f746d63277d22d645a" [9]=> string(40) "destroy 9840724d739d20f746d63277d22d645a" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=b67b999159391c6cff348f1770226a51" string(32) "b67b999159391c6cff348f1770226a51" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b67b999159391c6cff348f1770226a51" [3]=> string(52) "current session_id: b67b999159391c6cff348f1770226a51" [4]=> string(52) "current session_id: b67b999159391c6cff348f1770226a51" [5]=> string(54) "write b67b999159391c6cff348f1770226a51: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b67b999159391c6cff348f1770226a51" [9]=> string(40) "destroy b67b999159391c6cff348f1770226a51" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=3a7a05a923ae39f6538f185cbaf3652b" string(32) "3a7a05a923ae39f6538f185cbaf3652b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3a7a05a923ae39f6538f185cbaf3652b" [3]=> string(52) "current session_id: 3a7a05a923ae39f6538f185cbaf3652b" [4]=> string(52) "current session_id: 3a7a05a923ae39f6538f185cbaf3652b" [5]=> string(54) "write 3a7a05a923ae39f6538f185cbaf3652b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3a7a05a923ae39f6538f185cbaf3652b" [9]=> string(40) "destroy 3a7a05a923ae39f6538f185cbaf3652b" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=acf168e76e751b80d680fd7bfc78269d" string(32) "acf168e76e751b80d680fd7bfc78269d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read acf168e76e751b80d680fd7bfc78269d" [3]=> string(52) "current session_id: acf168e76e751b80d680fd7bfc78269d" [4]=> string(52) "current session_id: acf168e76e751b80d680fd7bfc78269d" [5]=> string(54) "write acf168e76e751b80d680fd7bfc78269d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read acf168e76e751b80d680fd7bfc78269d" [9]=> string(40) "destroy acf168e76e751b80d680fd7bfc78269d" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=efc9a105e1dc84bb2103504adf110a18" string(32) "efc9a105e1dc84bb2103504adf110a18" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read efc9a105e1dc84bb2103504adf110a18" [3]=> string(52) "current session_id: efc9a105e1dc84bb2103504adf110a18" [4]=> string(52) "current session_id: efc9a105e1dc84bb2103504adf110a18" [5]=> string(54) "write efc9a105e1dc84bb2103504adf110a18: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read efc9a105e1dc84bb2103504adf110a18" [9]=> string(40) "destroy efc9a105e1dc84bb2103504adf110a18" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=ad211f99e1f99f55e8ee2151dddc891f" string(32) "ad211f99e1f99f55e8ee2151dddc891f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ad211f99e1f99f55e8ee2151dddc891f" [3]=> string(52) "current session_id: ad211f99e1f99f55e8ee2151dddc891f" [4]=> string(52) "current session_id: ad211f99e1f99f55e8ee2151dddc891f" [5]=> string(54) "write ad211f99e1f99f55e8ee2151dddc891f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ad211f99e1f99f55e8ee2151dddc891f" [9]=> string(40) "destroy ad211f99e1f99f55e8ee2151dddc891f" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=98f4a640d0f1ee1c403c6f7cbc384126" string(32) "98f4a640d0f1ee1c403c6f7cbc384126" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 98f4a640d0f1ee1c403c6f7cbc384126" [3]=> string(52) "current session_id: 98f4a640d0f1ee1c403c6f7cbc384126" [4]=> string(52) "current session_id: 98f4a640d0f1ee1c403c6f7cbc384126" [5]=> string(54) "write 98f4a640d0f1ee1c403c6f7cbc384126: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 98f4a640d0f1ee1c403c6f7cbc384126" [9]=> string(40) "destroy 98f4a640d0f1ee1c403c6f7cbc384126" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=e7297835b7860b15ff186c4cb259205b" string(32) "e7297835b7860b15ff186c4cb259205b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e7297835b7860b15ff186c4cb259205b" [3]=> string(52) "current session_id: e7297835b7860b15ff186c4cb259205b" [4]=> string(52) "current session_id: e7297835b7860b15ff186c4cb259205b" [5]=> string(54) "write e7297835b7860b15ff186c4cb259205b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e7297835b7860b15ff186c4cb259205b" [9]=> string(40) "destroy e7297835b7860b15ff186c4cb259205b" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=c1afda3bd34ca3a1f194ff3b8734ca1f" string(32) "c1afda3bd34ca3a1f194ff3b8734ca1f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c1afda3bd34ca3a1f194ff3b8734ca1f" [3]=> string(52) "current session_id: c1afda3bd34ca3a1f194ff3b8734ca1f" [4]=> string(52) "current session_id: c1afda3bd34ca3a1f194ff3b8734ca1f" [5]=> string(54) "write c1afda3bd34ca3a1f194ff3b8734ca1f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c1afda3bd34ca3a1f194ff3b8734ca1f" [9]=> string(40) "destroy c1afda3bd34ca3a1f194ff3b8734ca1f" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=5b4e508fe5897e659eeb43f313127634" string(32) "5b4e508fe5897e659eeb43f313127634" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5b4e508fe5897e659eeb43f313127634" [3]=> string(52) "current session_id: 5b4e508fe5897e659eeb43f313127634" [4]=> string(52) "current session_id: 5b4e508fe5897e659eeb43f313127634" [5]=> string(54) "write 5b4e508fe5897e659eeb43f313127634: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5b4e508fe5897e659eeb43f313127634" [9]=> string(40) "destroy 5b4e508fe5897e659eeb43f313127634" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=bafa6e7b6fcb15a7ce64ee063138a3c3" string(32) "bafa6e7b6fcb15a7ce64ee063138a3c3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bafa6e7b6fcb15a7ce64ee063138a3c3" [3]=> string(52) "current session_id: bafa6e7b6fcb15a7ce64ee063138a3c3" [4]=> string(52) "current session_id: bafa6e7b6fcb15a7ce64ee063138a3c3" [5]=> string(54) "write bafa6e7b6fcb15a7ce64ee063138a3c3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bafa6e7b6fcb15a7ce64ee063138a3c3" [9]=> string(40) "destroy bafa6e7b6fcb15a7ce64ee063138a3c3" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=71c74417aa93102255f8000dfaa7a655" string(32) "71c74417aa93102255f8000dfaa7a655" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 71c74417aa93102255f8000dfaa7a655" [3]=> string(52) "current session_id: 71c74417aa93102255f8000dfaa7a655" [4]=> string(52) "current session_id: 71c74417aa93102255f8000dfaa7a655" [5]=> string(54) "write 71c74417aa93102255f8000dfaa7a655: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 71c74417aa93102255f8000dfaa7a655" [9]=> string(40) "destroy 71c74417aa93102255f8000dfaa7a655" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=a2953d8e22e71eb2c22511b70d01c387" string(32) "a2953d8e22e71eb2c22511b70d01c387" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a2953d8e22e71eb2c22511b70d01c387" [3]=> string(52) "current session_id: a2953d8e22e71eb2c22511b70d01c387" [4]=> string(52) "current session_id: a2953d8e22e71eb2c22511b70d01c387" [5]=> string(54) "write a2953d8e22e71eb2c22511b70d01c387: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a2953d8e22e71eb2c22511b70d01c387" [9]=> string(40) "destroy a2953d8e22e71eb2c22511b70d01c387" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=075ad8c9add576d5d6126d8d9ebf91c4" string(32) "075ad8c9add576d5d6126d8d9ebf91c4" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 075ad8c9add576d5d6126d8d9ebf91c4" [3]=> string(52) "current session_id: 075ad8c9add576d5d6126d8d9ebf91c4" [4]=> string(52) "current session_id: 075ad8c9add576d5d6126d8d9ebf91c4" [5]=> string(54) "write 075ad8c9add576d5d6126d8d9ebf91c4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 075ad8c9add576d5d6126d8d9ebf91c4" [9]=> string(40) "destroy 075ad8c9add576d5d6126d8d9ebf91c4" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=050291ee1c117e7ec5d03161816374da" string(32) "050291ee1c117e7ec5d03161816374da" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 050291ee1c117e7ec5d03161816374da" [3]=> string(52) "current session_id: 050291ee1c117e7ec5d03161816374da" [4]=> string(52) "current session_id: 050291ee1c117e7ec5d03161816374da" [5]=> string(54) "write 050291ee1c117e7ec5d03161816374da: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 050291ee1c117e7ec5d03161816374da" [9]=> string(40) "destroy 050291ee1c117e7ec5d03161816374da" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=5e68633918b1658fcaa1355f64a875d2" string(32) "5e68633918b1658fcaa1355f64a875d2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5e68633918b1658fcaa1355f64a875d2" [3]=> string(52) "current session_id: 5e68633918b1658fcaa1355f64a875d2" [4]=> string(52) "current session_id: 5e68633918b1658fcaa1355f64a875d2" [5]=> string(54) "write 5e68633918b1658fcaa1355f64a875d2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5e68633918b1658fcaa1355f64a875d2" [9]=> string(40) "destroy 5e68633918b1658fcaa1355f64a875d2" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=5c01d0472f02d5262e19f411fed6f695" string(32) "5c01d0472f02d5262e19f411fed6f695" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5c01d0472f02d5262e19f411fed6f695" [3]=> string(52) "current session_id: 5c01d0472f02d5262e19f411fed6f695" [4]=> string(52) "current session_id: 5c01d0472f02d5262e19f411fed6f695" [5]=> string(54) "write 5c01d0472f02d5262e19f411fed6f695: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5c01d0472f02d5262e19f411fed6f695" [9]=> string(40) "destroy 5c01d0472f02d5262e19f411fed6f695" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=1492514eef1ab00b53eecf5a323a5583" string(32) "1492514eef1ab00b53eecf5a323a5583" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1492514eef1ab00b53eecf5a323a5583" [3]=> string(52) "current session_id: 1492514eef1ab00b53eecf5a323a5583" [4]=> string(52) "current session_id: 1492514eef1ab00b53eecf5a323a5583" [5]=> string(54) "write 1492514eef1ab00b53eecf5a323a5583: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1492514eef1ab00b53eecf5a323a5583" [9]=> string(40) "destroy 1492514eef1ab00b53eecf5a323a5583" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=7300ac50c370ae957c1afae7e4462100" string(32) "7300ac50c370ae957c1afae7e4462100" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7300ac50c370ae957c1afae7e4462100" [3]=> string(52) "current session_id: 7300ac50c370ae957c1afae7e4462100" [4]=> string(52) "current session_id: 7300ac50c370ae957c1afae7e4462100" [5]=> string(54) "write 7300ac50c370ae957c1afae7e4462100: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7300ac50c370ae957c1afae7e4462100" [9]=> string(40) "destroy 7300ac50c370ae957c1afae7e4462100" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=03ef563e6784c36cdeefd815da89d035" string(32) "03ef563e6784c36cdeefd815da89d035" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 03ef563e6784c36cdeefd815da89d035" [3]=> string(52) "current session_id: 03ef563e6784c36cdeefd815da89d035" [4]=> string(52) "current session_id: 03ef563e6784c36cdeefd815da89d035" [5]=> string(54) "write 03ef563e6784c36cdeefd815da89d035: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 03ef563e6784c36cdeefd815da89d035" [9]=> string(40) "destroy 03ef563e6784c36cdeefd815da89d035" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=0fa8ab048b175d1c51f62f648fc9204d" string(32) "0fa8ab048b175d1c51f62f648fc9204d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0fa8ab048b175d1c51f62f648fc9204d" [3]=> string(52) "current session_id: 0fa8ab048b175d1c51f62f648fc9204d" [4]=> string(52) "current session_id: 0fa8ab048b175d1c51f62f648fc9204d" [5]=> string(54) "write 0fa8ab048b175d1c51f62f648fc9204d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0fa8ab048b175d1c51f62f648fc9204d" [9]=> string(40) "destroy 0fa8ab048b175d1c51f62f648fc9204d" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=d05a54e1247f9dd814b8572c88693e19" string(32) "d05a54e1247f9dd814b8572c88693e19" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d05a54e1247f9dd814b8572c88693e19" [3]=> string(52) "current session_id: d05a54e1247f9dd814b8572c88693e19" [4]=> string(52) "current session_id: d05a54e1247f9dd814b8572c88693e19" [5]=> string(54) "write d05a54e1247f9dd814b8572c88693e19: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d05a54e1247f9dd814b8572c88693e19" [9]=> string(40) "destroy d05a54e1247f9dd814b8572c88693e19" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=70a7b579a543bf9f8b5266fe158c1158" string(32) "70a7b579a543bf9f8b5266fe158c1158" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 70a7b579a543bf9f8b5266fe158c1158" [3]=> string(52) "current session_id: 70a7b579a543bf9f8b5266fe158c1158" [4]=> string(52) "current session_id: 70a7b579a543bf9f8b5266fe158c1158" [5]=> string(54) "write 70a7b579a543bf9f8b5266fe158c1158: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 70a7b579a543bf9f8b5266fe158c1158" [9]=> string(40) "destroy 70a7b579a543bf9f8b5266fe158c1158" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=69ac46790f575184eb0687de3efac663" string(32) "69ac46790f575184eb0687de3efac663" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 69ac46790f575184eb0687de3efac663" [3]=> string(52) "current session_id: 69ac46790f575184eb0687de3efac663" [4]=> string(52) "current session_id: 69ac46790f575184eb0687de3efac663" [5]=> string(54) "write 69ac46790f575184eb0687de3efac663: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 69ac46790f575184eb0687de3efac663" [9]=> string(40) "destroy 69ac46790f575184eb0687de3efac663" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=a0ad6c1e2ffd4cf55e9dd10f7b15a584" string(32) "a0ad6c1e2ffd4cf55e9dd10f7b15a584" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a0ad6c1e2ffd4cf55e9dd10f7b15a584" [3]=> string(52) "current session_id: a0ad6c1e2ffd4cf55e9dd10f7b15a584" [4]=> string(52) "current session_id: a0ad6c1e2ffd4cf55e9dd10f7b15a584" [5]=> string(54) "write a0ad6c1e2ffd4cf55e9dd10f7b15a584: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a0ad6c1e2ffd4cf55e9dd10f7b15a584" [9]=> string(40) "destroy a0ad6c1e2ffd4cf55e9dd10f7b15a584" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=affdbbf00d728a07ce36ebd60ba35bd1" string(32) "affdbbf00d728a07ce36ebd60ba35bd1" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read affdbbf00d728a07ce36ebd60ba35bd1" [3]=> string(52) "current session_id: affdbbf00d728a07ce36ebd60ba35bd1" [4]=> string(52) "current session_id: affdbbf00d728a07ce36ebd60ba35bd1" [5]=> string(54) "write affdbbf00d728a07ce36ebd60ba35bd1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read affdbbf00d728a07ce36ebd60ba35bd1" [9]=> string(40) "destroy affdbbf00d728a07ce36ebd60ba35bd1" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=7d9c916ec9b8943ded886b1d06c6030d" string(32) "7d9c916ec9b8943ded886b1d06c6030d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7d9c916ec9b8943ded886b1d06c6030d" [3]=> string(52) "current session_id: 7d9c916ec9b8943ded886b1d06c6030d" [4]=> string(52) "current session_id: 7d9c916ec9b8943ded886b1d06c6030d" [5]=> string(54) "write 7d9c916ec9b8943ded886b1d06c6030d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7d9c916ec9b8943ded886b1d06c6030d" [9]=> string(40) "destroy 7d9c916ec9b8943ded886b1d06c6030d" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=23f63030c37604afb678fd47b0d67812" string(32) "23f63030c37604afb678fd47b0d67812" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 23f63030c37604afb678fd47b0d67812" [3]=> string(52) "current session_id: 23f63030c37604afb678fd47b0d67812" [4]=> string(52) "current session_id: 23f63030c37604afb678fd47b0d67812" [5]=> string(54) "write 23f63030c37604afb678fd47b0d67812: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 23f63030c37604afb678fd47b0d67812" [9]=> string(40) "destroy 23f63030c37604afb678fd47b0d67812" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=16f65f220905558c314bd48d27b6e3b0" string(32) "16f65f220905558c314bd48d27b6e3b0" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 16f65f220905558c314bd48d27b6e3b0" [3]=> string(52) "current session_id: 16f65f220905558c314bd48d27b6e3b0" [4]=> string(52) "current session_id: 16f65f220905558c314bd48d27b6e3b0" [5]=> string(54) "write 16f65f220905558c314bd48d27b6e3b0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 16f65f220905558c314bd48d27b6e3b0" [9]=> string(40) "destroy 16f65f220905558c314bd48d27b6e3b0" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=dfc742e9872272a01ef3e0ebfe62451d" string(32) "dfc742e9872272a01ef3e0ebfe62451d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dfc742e9872272a01ef3e0ebfe62451d" [3]=> string(52) "current session_id: dfc742e9872272a01ef3e0ebfe62451d" [4]=> string(52) "current session_id: dfc742e9872272a01ef3e0ebfe62451d" [5]=> string(54) "write dfc742e9872272a01ef3e0ebfe62451d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read dfc742e9872272a01ef3e0ebfe62451d" [9]=> string(40) "destroy dfc742e9872272a01ef3e0ebfe62451d" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=e1da24b7e42789e6249bd8673f9c7595" string(32) "e1da24b7e42789e6249bd8673f9c7595" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e1da24b7e42789e6249bd8673f9c7595" [3]=> string(52) "current session_id: e1da24b7e42789e6249bd8673f9c7595" [4]=> string(52) "current session_id: e1da24b7e42789e6249bd8673f9c7595" [5]=> string(54) "write e1da24b7e42789e6249bd8673f9c7595: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e1da24b7e42789e6249bd8673f9c7595" [9]=> string(40) "destroy e1da24b7e42789e6249bd8673f9c7595" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=f2db97e2fbae00c04e7995e8c9db6d5a" string(32) "f2db97e2fbae00c04e7995e8c9db6d5a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f2db97e2fbae00c04e7995e8c9db6d5a" [3]=> string(52) "current session_id: f2db97e2fbae00c04e7995e8c9db6d5a" [4]=> string(52) "current session_id: f2db97e2fbae00c04e7995e8c9db6d5a" [5]=> string(54) "write f2db97e2fbae00c04e7995e8c9db6d5a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f2db97e2fbae00c04e7995e8c9db6d5a" [9]=> string(40) "destroy f2db97e2fbae00c04e7995e8c9db6d5a" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=71eb9fdc30a8e2eaf2d36b334165e7f5" string(32) "71eb9fdc30a8e2eaf2d36b334165e7f5" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 71eb9fdc30a8e2eaf2d36b334165e7f5" [3]=> string(7) "gc 1440" [4]=> string(52) "current session_id: 71eb9fdc30a8e2eaf2d36b334165e7f5" [5]=> string(52) "current session_id: 71eb9fdc30a8e2eaf2d36b334165e7f5" [6]=> string(54) "write 71eb9fdc30a8e2eaf2d36b334165e7f5: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read 71eb9fdc30a8e2eaf2d36b334165e7f5" [10]=> string(40) "destroy 71eb9fdc30a8e2eaf2d36b334165e7f5" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.1
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=0c6f40e15c2e7b6534c8d8f9278a4dd3" string(32) "0c6f40e15c2e7b6534c8d8f9278a4dd3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0c6f40e15c2e7b6534c8d8f9278a4dd3" [3]=> string(52) "current session_id: 0c6f40e15c2e7b6534c8d8f9278a4dd3" [4]=> string(52) "current session_id: 0c6f40e15c2e7b6534c8d8f9278a4dd3" [5]=> string(54) "write 0c6f40e15c2e7b6534c8d8f9278a4dd3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0c6f40e15c2e7b6534c8d8f9278a4dd3" [9]=> string(40) "destroy 0c6f40e15c2e7b6534c8d8f9278a4dd3" [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/vP28Z:44) in /in/vP28Z on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/vP28Z on line 60 string(42) "PHPSESSID=55c815e06d754dc816c3b7eacfc9b2bb" string(32) "55c815e06d754dc816c3b7eacfc9b2bb" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 68 int(2) array(0) { } Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/vP28Z:44) in /in/vP28Z on line 77 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/vP28Z:44) in /in/vP28Z on line 77 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 55c815e06d754dc816c3b7eacfc9b2bb" [3]=> string(52) "current session_id: 55c815e06d754dc816c3b7eacfc9b2bb" [4]=> string(52) "current session_id: 55c815e06d754dc816c3b7eacfc9b2bb" [5]=> string(54) "write 55c815e06d754dc816c3b7eacfc9b2bb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 55c815e06d754dc816c3b7eacfc9b2bb" [9]=> string(40) "destroy 55c815e06d754dc816c3b7eacfc9b2bb" [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/vP28Z 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/vP28Z on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/vP28Z 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/vP28Z on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/vP28Z 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/vP28Z 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/vP28Z on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/vP28Z on line 4
Process exited with code 255.

preferences:
286.54 ms | 401 KiB | 312 Q