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(); $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/kClhp 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/kClhp 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/kClhp 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/kClhp 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/kClhp 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/kClhp 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/kClhp on line 50 Warning: session_start(): Session cannot be started after headers have already been sent in /in/kClhp on line 55 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/kClhp on line 60 Fatal error: Uncaught Error: Undefined constant "SID" in /in/kClhp:64 Stack trace: #0 /in/kClhp(64): constant('SID') #1 {main} thrown in /in/kClhp 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/kClhp on line 50 Warning: session_start(): Session cannot be started after headers have already been sent in /in/kClhp on line 55 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/kClhp on line 60 Fatal error: Uncaught Error: Undefined constant "SID" in /in/kClhp:64 Stack trace: #0 /in/kClhp(64): constant('SID') #1 {main} thrown in /in/kClhp on line 64 array(3) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(20) "current session_id: " [2]=> string(20) "current session_id: " }
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
int(0) int(1) int(2) int(1) Warning: session_set_save_handler(): Cannot change save handler when headers already sent in /in/kClhp on line 50 Warning: session_start(): Cannot start session when headers already sent in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/kClhp on line 60 Warning: constant(): Couldn't find constant SID in /in/kClhp on line 64 NULL string(0) "" int(1) Warning: session_start(): Cannot start session when headers already sent in /in/kClhp on line 68 int(1) Warning: session_destroy(): Trying to destroy uninitialized session in /in/kClhp on line 70 Warning: session_id(): Cannot change session id when headers already sent in /in/kClhp on line 75 Warning: session_start(): Cannot start session when headers already sent in /in/kClhp on line 76 array(5) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(20) "current session_id: " [2]=> string(20) "current session_id: " [3]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [4]=> string(22) "current session_id: ''" }
Output for 7.1.0 - 7.1.33
int(0) int(1) int(2) int(1) Warning: session_start(): Session callback expects true/false return value in /in/kClhp on line 55 Warning: session_start(): Session callback expects true/false return value in /in/kClhp on line 55 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/kClhp on line 55
Process exited with code 255.
Output for 7.0.0 - 7.0.33
int(0) int(1) int(2) int(1) Warning: session_start(): Session callback expects true/false return value in /in/kClhp on line 55 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/kClhp on line 55 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.40
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=82c525a56df5253420525a7054a2a5cb" string(32) "82c525a56df5253420525a7054a2a5cb" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 82c525a56df5253420525a7054a2a5cb" [3]=> string(52) "current session_id: 82c525a56df5253420525a7054a2a5cb" [4]=> string(52) "current session_id: 82c525a56df5253420525a7054a2a5cb" [5]=> string(54) "write 82c525a56df5253420525a7054a2a5cb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 82c525a56df5253420525a7054a2a5cb" [9]=> string(40) "destroy 82c525a56df5253420525a7054a2a5cb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.39
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=3428b8f764ba1168e00290b77f396988" string(32) "3428b8f764ba1168e00290b77f396988" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3428b8f764ba1168e00290b77f396988" [3]=> string(52) "current session_id: 3428b8f764ba1168e00290b77f396988" [4]=> string(52) "current session_id: 3428b8f764ba1168e00290b77f396988" [5]=> string(54) "write 3428b8f764ba1168e00290b77f396988: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3428b8f764ba1168e00290b77f396988" [9]=> string(40) "destroy 3428b8f764ba1168e00290b77f396988" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.38
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=65b2efca2853d0c19f7b2da2c27bf28b" string(32) "65b2efca2853d0c19f7b2da2c27bf28b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 65b2efca2853d0c19f7b2da2c27bf28b" [3]=> string(52) "current session_id: 65b2efca2853d0c19f7b2da2c27bf28b" [4]=> string(52) "current session_id: 65b2efca2853d0c19f7b2da2c27bf28b" [5]=> string(54) "write 65b2efca2853d0c19f7b2da2c27bf28b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 65b2efca2853d0c19f7b2da2c27bf28b" [9]=> string(40) "destroy 65b2efca2853d0c19f7b2da2c27bf28b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.37
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=f2ae20ec9280a35752dee0418aff71d2" string(32) "f2ae20ec9280a35752dee0418aff71d2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f2ae20ec9280a35752dee0418aff71d2" [3]=> string(52) "current session_id: f2ae20ec9280a35752dee0418aff71d2" [4]=> string(52) "current session_id: f2ae20ec9280a35752dee0418aff71d2" [5]=> string(54) "write f2ae20ec9280a35752dee0418aff71d2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f2ae20ec9280a35752dee0418aff71d2" [9]=> string(40) "destroy f2ae20ec9280a35752dee0418aff71d2" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.36
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=a99adbca1bdd06b3d3a39ce332e06746" string(32) "a99adbca1bdd06b3d3a39ce332e06746" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a99adbca1bdd06b3d3a39ce332e06746" [3]=> string(52) "current session_id: a99adbca1bdd06b3d3a39ce332e06746" [4]=> string(52) "current session_id: a99adbca1bdd06b3d3a39ce332e06746" [5]=> string(54) "write a99adbca1bdd06b3d3a39ce332e06746: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a99adbca1bdd06b3d3a39ce332e06746" [9]=> string(40) "destroy a99adbca1bdd06b3d3a39ce332e06746" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.35
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=1714acaa4cd0fc28c658f4b93e5f4f84" string(32) "1714acaa4cd0fc28c658f4b93e5f4f84" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1714acaa4cd0fc28c658f4b93e5f4f84" [3]=> string(52) "current session_id: 1714acaa4cd0fc28c658f4b93e5f4f84" [4]=> string(52) "current session_id: 1714acaa4cd0fc28c658f4b93e5f4f84" [5]=> string(54) "write 1714acaa4cd0fc28c658f4b93e5f4f84: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1714acaa4cd0fc28c658f4b93e5f4f84" [9]=> string(40) "destroy 1714acaa4cd0fc28c658f4b93e5f4f84" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.34
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=a020e688b07343c265292190c9fa43d7" string(32) "a020e688b07343c265292190c9fa43d7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a020e688b07343c265292190c9fa43d7" [3]=> string(52) "current session_id: a020e688b07343c265292190c9fa43d7" [4]=> string(52) "current session_id: a020e688b07343c265292190c9fa43d7" [5]=> string(54) "write a020e688b07343c265292190c9fa43d7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a020e688b07343c265292190c9fa43d7" [9]=> string(40) "destroy a020e688b07343c265292190c9fa43d7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.33
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=49e992bf60528efaf5d9251de8bac8d3" string(32) "49e992bf60528efaf5d9251de8bac8d3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 49e992bf60528efaf5d9251de8bac8d3" [3]=> string(52) "current session_id: 49e992bf60528efaf5d9251de8bac8d3" [4]=> string(52) "current session_id: 49e992bf60528efaf5d9251de8bac8d3" [5]=> string(54) "write 49e992bf60528efaf5d9251de8bac8d3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 49e992bf60528efaf5d9251de8bac8d3" [9]=> string(40) "destroy 49e992bf60528efaf5d9251de8bac8d3" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.32
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=0f22e8f1856162985a4897765f4e2e9d" string(32) "0f22e8f1856162985a4897765f4e2e9d" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0f22e8f1856162985a4897765f4e2e9d" [3]=> string(52) "current session_id: 0f22e8f1856162985a4897765f4e2e9d" [4]=> string(52) "current session_id: 0f22e8f1856162985a4897765f4e2e9d" [5]=> string(54) "write 0f22e8f1856162985a4897765f4e2e9d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0f22e8f1856162985a4897765f4e2e9d" [9]=> string(40) "destroy 0f22e8f1856162985a4897765f4e2e9d" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.31
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=89ba5ffed897012d99c98bae35aba256" string(32) "89ba5ffed897012d99c98bae35aba256" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 89ba5ffed897012d99c98bae35aba256" [3]=> string(52) "current session_id: 89ba5ffed897012d99c98bae35aba256" [4]=> string(52) "current session_id: 89ba5ffed897012d99c98bae35aba256" [5]=> string(54) "write 89ba5ffed897012d99c98bae35aba256: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 89ba5ffed897012d99c98bae35aba256" [9]=> string(40) "destroy 89ba5ffed897012d99c98bae35aba256" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.30
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=f3bf92e32b99b5037ee189c30725541f" string(32) "f3bf92e32b99b5037ee189c30725541f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f3bf92e32b99b5037ee189c30725541f" [3]=> string(52) "current session_id: f3bf92e32b99b5037ee189c30725541f" [4]=> string(52) "current session_id: f3bf92e32b99b5037ee189c30725541f" [5]=> string(54) "write f3bf92e32b99b5037ee189c30725541f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f3bf92e32b99b5037ee189c30725541f" [9]=> string(40) "destroy f3bf92e32b99b5037ee189c30725541f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.29
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=7d66204aca16e09acf2c5ae48772ae09" string(32) "7d66204aca16e09acf2c5ae48772ae09" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7d66204aca16e09acf2c5ae48772ae09" [3]=> string(52) "current session_id: 7d66204aca16e09acf2c5ae48772ae09" [4]=> string(52) "current session_id: 7d66204aca16e09acf2c5ae48772ae09" [5]=> string(54) "write 7d66204aca16e09acf2c5ae48772ae09: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7d66204aca16e09acf2c5ae48772ae09" [9]=> string(40) "destroy 7d66204aca16e09acf2c5ae48772ae09" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.28
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=e052ca2e861152864be5ad94059c2931" string(32) "e052ca2e861152864be5ad94059c2931" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e052ca2e861152864be5ad94059c2931" [3]=> string(52) "current session_id: e052ca2e861152864be5ad94059c2931" [4]=> string(52) "current session_id: e052ca2e861152864be5ad94059c2931" [5]=> string(54) "write e052ca2e861152864be5ad94059c2931: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e052ca2e861152864be5ad94059c2931" [9]=> string(40) "destroy e052ca2e861152864be5ad94059c2931" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.27
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=4e75d3ab9da412c083d280ed1d63e065" string(32) "4e75d3ab9da412c083d280ed1d63e065" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4e75d3ab9da412c083d280ed1d63e065" [3]=> string(52) "current session_id: 4e75d3ab9da412c083d280ed1d63e065" [4]=> string(52) "current session_id: 4e75d3ab9da412c083d280ed1d63e065" [5]=> string(54) "write 4e75d3ab9da412c083d280ed1d63e065: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4e75d3ab9da412c083d280ed1d63e065" [9]=> string(40) "destroy 4e75d3ab9da412c083d280ed1d63e065" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.26
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=43bed19f2f8763a9b3a8eda06790b51a" string(32) "43bed19f2f8763a9b3a8eda06790b51a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 43bed19f2f8763a9b3a8eda06790b51a" [3]=> string(52) "current session_id: 43bed19f2f8763a9b3a8eda06790b51a" [4]=> string(52) "current session_id: 43bed19f2f8763a9b3a8eda06790b51a" [5]=> string(54) "write 43bed19f2f8763a9b3a8eda06790b51a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 43bed19f2f8763a9b3a8eda06790b51a" [9]=> string(40) "destroy 43bed19f2f8763a9b3a8eda06790b51a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.25
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=b9e237c5db7f83f9bf322e8d95cc9129" string(32) "b9e237c5db7f83f9bf322e8d95cc9129" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b9e237c5db7f83f9bf322e8d95cc9129" [3]=> string(52) "current session_id: b9e237c5db7f83f9bf322e8d95cc9129" [4]=> string(52) "current session_id: b9e237c5db7f83f9bf322e8d95cc9129" [5]=> string(54) "write b9e237c5db7f83f9bf322e8d95cc9129: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b9e237c5db7f83f9bf322e8d95cc9129" [9]=> string(40) "destroy b9e237c5db7f83f9bf322e8d95cc9129" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.24
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=20b8fc49cad2191ad090291742e7d38c" string(32) "20b8fc49cad2191ad090291742e7d38c" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 20b8fc49cad2191ad090291742e7d38c" [3]=> string(52) "current session_id: 20b8fc49cad2191ad090291742e7d38c" [4]=> string(52) "current session_id: 20b8fc49cad2191ad090291742e7d38c" [5]=> string(54) "write 20b8fc49cad2191ad090291742e7d38c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 20b8fc49cad2191ad090291742e7d38c" [9]=> string(40) "destroy 20b8fc49cad2191ad090291742e7d38c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.23
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=053c31a75fe55bd9e985f9c8872350b8" string(32) "053c31a75fe55bd9e985f9c8872350b8" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 053c31a75fe55bd9e985f9c8872350b8" [3]=> string(52) "current session_id: 053c31a75fe55bd9e985f9c8872350b8" [4]=> string(52) "current session_id: 053c31a75fe55bd9e985f9c8872350b8" [5]=> string(54) "write 053c31a75fe55bd9e985f9c8872350b8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 053c31a75fe55bd9e985f9c8872350b8" [9]=> string(40) "destroy 053c31a75fe55bd9e985f9c8872350b8" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.22
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=e08c21ac0202d8f420aa456f27b53bb4" string(32) "e08c21ac0202d8f420aa456f27b53bb4" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e08c21ac0202d8f420aa456f27b53bb4" [3]=> string(52) "current session_id: e08c21ac0202d8f420aa456f27b53bb4" [4]=> string(52) "current session_id: e08c21ac0202d8f420aa456f27b53bb4" [5]=> string(54) "write e08c21ac0202d8f420aa456f27b53bb4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e08c21ac0202d8f420aa456f27b53bb4" [9]=> string(40) "destroy e08c21ac0202d8f420aa456f27b53bb4" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=7f2a2306bf77d7b2936b630107bae5b8" string(32) "7f2a2306bf77d7b2936b630107bae5b8" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7f2a2306bf77d7b2936b630107bae5b8" [3]=> string(52) "current session_id: 7f2a2306bf77d7b2936b630107bae5b8" [4]=> string(52) "current session_id: 7f2a2306bf77d7b2936b630107bae5b8" [5]=> string(54) "write 7f2a2306bf77d7b2936b630107bae5b8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7f2a2306bf77d7b2936b630107bae5b8" [9]=> string(40) "destroy 7f2a2306bf77d7b2936b630107bae5b8" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=e4ac92d7fad40e4bf9d6e583751efdcc" string(32) "e4ac92d7fad40e4bf9d6e583751efdcc" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e4ac92d7fad40e4bf9d6e583751efdcc" [3]=> string(52) "current session_id: e4ac92d7fad40e4bf9d6e583751efdcc" [4]=> string(52) "current session_id: e4ac92d7fad40e4bf9d6e583751efdcc" [5]=> string(54) "write e4ac92d7fad40e4bf9d6e583751efdcc: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e4ac92d7fad40e4bf9d6e583751efdcc" [9]=> string(40) "destroy e4ac92d7fad40e4bf9d6e583751efdcc" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.19
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=ec20b48462a82e66791e879b79b2218e" string(32) "ec20b48462a82e66791e879b79b2218e" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ec20b48462a82e66791e879b79b2218e" [3]=> string(52) "current session_id: ec20b48462a82e66791e879b79b2218e" [4]=> string(52) "current session_id: ec20b48462a82e66791e879b79b2218e" [5]=> string(54) "write ec20b48462a82e66791e879b79b2218e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ec20b48462a82e66791e879b79b2218e" [9]=> string(40) "destroy ec20b48462a82e66791e879b79b2218e" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=bd80e5e1fb0beb6be3e37a106ff34359" string(32) "bd80e5e1fb0beb6be3e37a106ff34359" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bd80e5e1fb0beb6be3e37a106ff34359" [3]=> string(52) "current session_id: bd80e5e1fb0beb6be3e37a106ff34359" [4]=> string(52) "current session_id: bd80e5e1fb0beb6be3e37a106ff34359" [5]=> string(54) "write bd80e5e1fb0beb6be3e37a106ff34359: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bd80e5e1fb0beb6be3e37a106ff34359" [9]=> string(40) "destroy bd80e5e1fb0beb6be3e37a106ff34359" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=a12a51f7b899c36355028f700a99f2f2" string(32) "a12a51f7b899c36355028f700a99f2f2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a12a51f7b899c36355028f700a99f2f2" [3]=> string(52) "current session_id: a12a51f7b899c36355028f700a99f2f2" [4]=> string(52) "current session_id: a12a51f7b899c36355028f700a99f2f2" [5]=> string(54) "write a12a51f7b899c36355028f700a99f2f2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a12a51f7b899c36355028f700a99f2f2" [9]=> string(40) "destroy a12a51f7b899c36355028f700a99f2f2" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=12e252ffe52b72261de8f4daf678e840" string(32) "12e252ffe52b72261de8f4daf678e840" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 12e252ffe52b72261de8f4daf678e840" [3]=> string(52) "current session_id: 12e252ffe52b72261de8f4daf678e840" [4]=> string(52) "current session_id: 12e252ffe52b72261de8f4daf678e840" [5]=> string(54) "write 12e252ffe52b72261de8f4daf678e840: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 12e252ffe52b72261de8f4daf678e840" [9]=> string(40) "destroy 12e252ffe52b72261de8f4daf678e840" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=9a16809c7898d9028e680521f5dfcea3" string(32) "9a16809c7898d9028e680521f5dfcea3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9a16809c7898d9028e680521f5dfcea3" [3]=> string(52) "current session_id: 9a16809c7898d9028e680521f5dfcea3" [4]=> string(52) "current session_id: 9a16809c7898d9028e680521f5dfcea3" [5]=> string(54) "write 9a16809c7898d9028e680521f5dfcea3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9a16809c7898d9028e680521f5dfcea3" [9]=> string(40) "destroy 9a16809c7898d9028e680521f5dfcea3" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=c3dc2b5b87636b7892e5fe47e344b017" string(32) "c3dc2b5b87636b7892e5fe47e344b017" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c3dc2b5b87636b7892e5fe47e344b017" [3]=> string(52) "current session_id: c3dc2b5b87636b7892e5fe47e344b017" [4]=> string(52) "current session_id: c3dc2b5b87636b7892e5fe47e344b017" [5]=> string(54) "write c3dc2b5b87636b7892e5fe47e344b017: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c3dc2b5b87636b7892e5fe47e344b017" [9]=> string(7) "gc 1440" [10]=> string(40) "destroy c3dc2b5b87636b7892e5fe47e344b017" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.13
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=05cc5f64cb3602c44d11ea4f9022ffd3" string(32) "05cc5f64cb3602c44d11ea4f9022ffd3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 05cc5f64cb3602c44d11ea4f9022ffd3" [3]=> string(52) "current session_id: 05cc5f64cb3602c44d11ea4f9022ffd3" [4]=> string(52) "current session_id: 05cc5f64cb3602c44d11ea4f9022ffd3" [5]=> string(54) "write 05cc5f64cb3602c44d11ea4f9022ffd3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 05cc5f64cb3602c44d11ea4f9022ffd3" [9]=> string(40) "destroy 05cc5f64cb3602c44d11ea4f9022ffd3" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=9ed67c7f8d96701d64022598de273334" string(32) "9ed67c7f8d96701d64022598de273334" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9ed67c7f8d96701d64022598de273334" [3]=> string(52) "current session_id: 9ed67c7f8d96701d64022598de273334" [4]=> string(52) "current session_id: 9ed67c7f8d96701d64022598de273334" [5]=> string(54) "write 9ed67c7f8d96701d64022598de273334: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9ed67c7f8d96701d64022598de273334" [9]=> string(40) "destroy 9ed67c7f8d96701d64022598de273334" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=a20a6e9962619666485ea2f3720a0f9a" string(32) "a20a6e9962619666485ea2f3720a0f9a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a20a6e9962619666485ea2f3720a0f9a" [3]=> string(52) "current session_id: a20a6e9962619666485ea2f3720a0f9a" [4]=> string(52) "current session_id: a20a6e9962619666485ea2f3720a0f9a" [5]=> string(54) "write a20a6e9962619666485ea2f3720a0f9a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a20a6e9962619666485ea2f3720a0f9a" [9]=> string(40) "destroy a20a6e9962619666485ea2f3720a0f9a" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=d492491457e79cb5bc1d66f79c2578b5" string(32) "d492491457e79cb5bc1d66f79c2578b5" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d492491457e79cb5bc1d66f79c2578b5" [3]=> string(52) "current session_id: d492491457e79cb5bc1d66f79c2578b5" [4]=> string(52) "current session_id: d492491457e79cb5bc1d66f79c2578b5" [5]=> string(54) "write d492491457e79cb5bc1d66f79c2578b5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d492491457e79cb5bc1d66f79c2578b5" [9]=> string(40) "destroy d492491457e79cb5bc1d66f79c2578b5" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=de55cd72ba716d2b2ab99479e8360258" string(32) "de55cd72ba716d2b2ab99479e8360258" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read de55cd72ba716d2b2ab99479e8360258" [3]=> string(52) "current session_id: de55cd72ba716d2b2ab99479e8360258" [4]=> string(52) "current session_id: de55cd72ba716d2b2ab99479e8360258" [5]=> string(54) "write de55cd72ba716d2b2ab99479e8360258: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read de55cd72ba716d2b2ab99479e8360258" [9]=> string(40) "destroy de55cd72ba716d2b2ab99479e8360258" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=17fd76033fedde63fa2ccc67f1025366" string(32) "17fd76033fedde63fa2ccc67f1025366" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 17fd76033fedde63fa2ccc67f1025366" [3]=> string(52) "current session_id: 17fd76033fedde63fa2ccc67f1025366" [4]=> string(52) "current session_id: 17fd76033fedde63fa2ccc67f1025366" [5]=> string(54) "write 17fd76033fedde63fa2ccc67f1025366: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 17fd76033fedde63fa2ccc67f1025366" [9]=> string(40) "destroy 17fd76033fedde63fa2ccc67f1025366" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.7
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=7ed4e999d835f38e00e3853f4c9e13ff" string(32) "7ed4e999d835f38e00e3853f4c9e13ff" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7ed4e999d835f38e00e3853f4c9e13ff" [3]=> string(52) "current session_id: 7ed4e999d835f38e00e3853f4c9e13ff" [4]=> string(52) "current session_id: 7ed4e999d835f38e00e3853f4c9e13ff" [5]=> string(54) "write 7ed4e999d835f38e00e3853f4c9e13ff: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7ed4e999d835f38e00e3853f4c9e13ff" [9]=> string(40) "destroy 7ed4e999d835f38e00e3853f4c9e13ff" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.6
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=6c8be608cde8b18a9583656b303a13f5" string(32) "6c8be608cde8b18a9583656b303a13f5" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6c8be608cde8b18a9583656b303a13f5" [3]=> string(52) "current session_id: 6c8be608cde8b18a9583656b303a13f5" [4]=> string(52) "current session_id: 6c8be608cde8b18a9583656b303a13f5" [5]=> string(54) "write 6c8be608cde8b18a9583656b303a13f5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6c8be608cde8b18a9583656b303a13f5" [9]=> string(40) "destroy 6c8be608cde8b18a9583656b303a13f5" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.5
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=126137fd2c30bc650b7215d8bc5a6ebb" string(32) "126137fd2c30bc650b7215d8bc5a6ebb" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 126137fd2c30bc650b7215d8bc5a6ebb" [3]=> string(52) "current session_id: 126137fd2c30bc650b7215d8bc5a6ebb" [4]=> string(52) "current session_id: 126137fd2c30bc650b7215d8bc5a6ebb" [5]=> string(54) "write 126137fd2c30bc650b7215d8bc5a6ebb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 126137fd2c30bc650b7215d8bc5a6ebb" [9]=> string(40) "destroy 126137fd2c30bc650b7215d8bc5a6ebb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.4
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=6596c73c223b72644bd3dba0fb3b2407" string(32) "6596c73c223b72644bd3dba0fb3b2407" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6596c73c223b72644bd3dba0fb3b2407" [3]=> string(52) "current session_id: 6596c73c223b72644bd3dba0fb3b2407" [4]=> string(52) "current session_id: 6596c73c223b72644bd3dba0fb3b2407" [5]=> string(54) "write 6596c73c223b72644bd3dba0fb3b2407: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6596c73c223b72644bd3dba0fb3b2407" [9]=> string(40) "destroy 6596c73c223b72644bd3dba0fb3b2407" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.3
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=9740b994e3f6b1bf9fa66134612726d7" string(32) "9740b994e3f6b1bf9fa66134612726d7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9740b994e3f6b1bf9fa66134612726d7" [3]=> string(52) "current session_id: 9740b994e3f6b1bf9fa66134612726d7" [4]=> string(52) "current session_id: 9740b994e3f6b1bf9fa66134612726d7" [5]=> string(54) "write 9740b994e3f6b1bf9fa66134612726d7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9740b994e3f6b1bf9fa66134612726d7" [9]=> string(40) "destroy 9740b994e3f6b1bf9fa66134612726d7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.2
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=70b5f99e207fcb1310ada34eb619dad7" string(32) "70b5f99e207fcb1310ada34eb619dad7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 70b5f99e207fcb1310ada34eb619dad7" [3]=> string(52) "current session_id: 70b5f99e207fcb1310ada34eb619dad7" [4]=> string(52) "current session_id: 70b5f99e207fcb1310ada34eb619dad7" [5]=> string(54) "write 70b5f99e207fcb1310ada34eb619dad7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 70b5f99e207fcb1310ada34eb619dad7" [9]=> string(40) "destroy 70b5f99e207fcb1310ada34eb619dad7" [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(7) "gc 1440" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.1
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=dc9536bcc3ac6e5cbcc0cde06c5887b2" string(32) "dc9536bcc3ac6e5cbcc0cde06c5887b2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dc9536bcc3ac6e5cbcc0cde06c5887b2" [3]=> string(52) "current session_id: dc9536bcc3ac6e5cbcc0cde06c5887b2" [4]=> string(52) "current session_id: dc9536bcc3ac6e5cbcc0cde06c5887b2" [5]=> string(54) "write dc9536bcc3ac6e5cbcc0cde06c5887b2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read dc9536bcc3ac6e5cbcc0cde06c5887b2" [9]=> string(40) "destroy dc9536bcc3ac6e5cbcc0cde06c5887b2" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.0
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=7429a4454f5ab98d5b8bd6918a761484" string(32) "7429a4454f5ab98d5b8bd6918a761484" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7429a4454f5ab98d5b8bd6918a761484" [3]=> string(52) "current session_id: 7429a4454f5ab98d5b8bd6918a761484" [4]=> string(52) "current session_id: 7429a4454f5ab98d5b8bd6918a761484" [5]=> string(54) "write 7429a4454f5ab98d5b8bd6918a761484: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7429a4454f5ab98d5b8bd6918a761484" [9]=> string(40) "destroy 7429a4454f5ab98d5b8bd6918a761484" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.38
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=e94cf343fd921d32aca6a69b1d41c654" string(32) "e94cf343fd921d32aca6a69b1d41c654" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e94cf343fd921d32aca6a69b1d41c654" [3]=> string(52) "current session_id: e94cf343fd921d32aca6a69b1d41c654" [4]=> string(52) "current session_id: e94cf343fd921d32aca6a69b1d41c654" [5]=> string(54) "write e94cf343fd921d32aca6a69b1d41c654: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e94cf343fd921d32aca6a69b1d41c654" [9]=> string(40) "destroy e94cf343fd921d32aca6a69b1d41c654" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.37
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=7d2d9696a476a2852049c18e11f0a121" string(32) "7d2d9696a476a2852049c18e11f0a121" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7d2d9696a476a2852049c18e11f0a121" [3]=> string(52) "current session_id: 7d2d9696a476a2852049c18e11f0a121" [4]=> string(52) "current session_id: 7d2d9696a476a2852049c18e11f0a121" [5]=> string(54) "write 7d2d9696a476a2852049c18e11f0a121: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7d2d9696a476a2852049c18e11f0a121" [9]=> string(40) "destroy 7d2d9696a476a2852049c18e11f0a121" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.36
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=0264ae7b1c93033dfd396be0b73c3601" string(32) "0264ae7b1c93033dfd396be0b73c3601" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0264ae7b1c93033dfd396be0b73c3601" [3]=> string(52) "current session_id: 0264ae7b1c93033dfd396be0b73c3601" [4]=> string(52) "current session_id: 0264ae7b1c93033dfd396be0b73c3601" [5]=> string(54) "write 0264ae7b1c93033dfd396be0b73c3601: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0264ae7b1c93033dfd396be0b73c3601" [9]=> string(40) "destroy 0264ae7b1c93033dfd396be0b73c3601" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=e8717aaf548d5500b031655d1d78c824" string(32) "e8717aaf548d5500b031655d1d78c824" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e8717aaf548d5500b031655d1d78c824" [3]=> string(52) "current session_id: e8717aaf548d5500b031655d1d78c824" [4]=> string(52) "current session_id: e8717aaf548d5500b031655d1d78c824" [5]=> string(54) "write e8717aaf548d5500b031655d1d78c824: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e8717aaf548d5500b031655d1d78c824" [9]=> string(40) "destroy e8717aaf548d5500b031655d1d78c824" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=53f33d164539540d755a7f979774b69b" string(32) "53f33d164539540d755a7f979774b69b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 53f33d164539540d755a7f979774b69b" [3]=> string(52) "current session_id: 53f33d164539540d755a7f979774b69b" [4]=> string(52) "current session_id: 53f33d164539540d755a7f979774b69b" [5]=> string(54) "write 53f33d164539540d755a7f979774b69b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 53f33d164539540d755a7f979774b69b" [9]=> string(40) "destroy 53f33d164539540d755a7f979774b69b" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=d306ed4cef1419bf52ac058c685d55ee" string(32) "d306ed4cef1419bf52ac058c685d55ee" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d306ed4cef1419bf52ac058c685d55ee" [3]=> string(52) "current session_id: d306ed4cef1419bf52ac058c685d55ee" [4]=> string(52) "current session_id: d306ed4cef1419bf52ac058c685d55ee" [5]=> string(54) "write d306ed4cef1419bf52ac058c685d55ee: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d306ed4cef1419bf52ac058c685d55ee" [9]=> string(40) "destroy d306ed4cef1419bf52ac058c685d55ee" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.32
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=dced049c079a3de2ef892aaa4564f2b3" string(32) "dced049c079a3de2ef892aaa4564f2b3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dced049c079a3de2ef892aaa4564f2b3" [3]=> string(52) "current session_id: dced049c079a3de2ef892aaa4564f2b3" [4]=> string(52) "current session_id: dced049c079a3de2ef892aaa4564f2b3" [5]=> string(54) "write dced049c079a3de2ef892aaa4564f2b3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read dced049c079a3de2ef892aaa4564f2b3" [9]=> string(40) "destroy dced049c079a3de2ef892aaa4564f2b3" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=0e0428f75ee9dffaeb21f93b5e1f6ecb" string(32) "0e0428f75ee9dffaeb21f93b5e1f6ecb" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0e0428f75ee9dffaeb21f93b5e1f6ecb" [3]=> string(52) "current session_id: 0e0428f75ee9dffaeb21f93b5e1f6ecb" [4]=> string(52) "current session_id: 0e0428f75ee9dffaeb21f93b5e1f6ecb" [5]=> string(54) "write 0e0428f75ee9dffaeb21f93b5e1f6ecb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0e0428f75ee9dffaeb21f93b5e1f6ecb" [9]=> string(40) "destroy 0e0428f75ee9dffaeb21f93b5e1f6ecb" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=fd97ebb7f3ce65c6574e4613d96010a2" string(32) "fd97ebb7f3ce65c6574e4613d96010a2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fd97ebb7f3ce65c6574e4613d96010a2" [3]=> string(52) "current session_id: fd97ebb7f3ce65c6574e4613d96010a2" [4]=> string(52) "current session_id: fd97ebb7f3ce65c6574e4613d96010a2" [5]=> string(54) "write fd97ebb7f3ce65c6574e4613d96010a2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read fd97ebb7f3ce65c6574e4613d96010a2" [9]=> string(40) "destroy fd97ebb7f3ce65c6574e4613d96010a2" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=204cdd21b193955d91d0cbff6661768e" string(32) "204cdd21b193955d91d0cbff6661768e" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 204cdd21b193955d91d0cbff6661768e" [3]=> string(52) "current session_id: 204cdd21b193955d91d0cbff6661768e" [4]=> string(52) "current session_id: 204cdd21b193955d91d0cbff6661768e" [5]=> string(54) "write 204cdd21b193955d91d0cbff6661768e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 204cdd21b193955d91d0cbff6661768e" [9]=> string(40) "destroy 204cdd21b193955d91d0cbff6661768e" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=3f7dd9b70e886194be463c2f43df121b" string(32) "3f7dd9b70e886194be463c2f43df121b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3f7dd9b70e886194be463c2f43df121b" [3]=> string(52) "current session_id: 3f7dd9b70e886194be463c2f43df121b" [4]=> string(52) "current session_id: 3f7dd9b70e886194be463c2f43df121b" [5]=> string(54) "write 3f7dd9b70e886194be463c2f43df121b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3f7dd9b70e886194be463c2f43df121b" [9]=> string(40) "destroy 3f7dd9b70e886194be463c2f43df121b" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=9b264ac3f5e81792f316a477e07c61f4" string(32) "9b264ac3f5e81792f316a477e07c61f4" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9b264ac3f5e81792f316a477e07c61f4" [3]=> string(52) "current session_id: 9b264ac3f5e81792f316a477e07c61f4" [4]=> string(52) "current session_id: 9b264ac3f5e81792f316a477e07c61f4" [5]=> string(54) "write 9b264ac3f5e81792f316a477e07c61f4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9b264ac3f5e81792f316a477e07c61f4" [9]=> string(40) "destroy 9b264ac3f5e81792f316a477e07c61f4" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=c6e61e0382c976372fa55002d45f367a" string(32) "c6e61e0382c976372fa55002d45f367a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c6e61e0382c976372fa55002d45f367a" [3]=> string(52) "current session_id: c6e61e0382c976372fa55002d45f367a" [4]=> string(52) "current session_id: c6e61e0382c976372fa55002d45f367a" [5]=> string(54) "write c6e61e0382c976372fa55002d45f367a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c6e61e0382c976372fa55002d45f367a" [9]=> string(40) "destroy c6e61e0382c976372fa55002d45f367a" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=fc1629313050c505c404a86aa86f91b2" string(32) "fc1629313050c505c404a86aa86f91b2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fc1629313050c505c404a86aa86f91b2" [3]=> string(52) "current session_id: fc1629313050c505c404a86aa86f91b2" [4]=> string(52) "current session_id: fc1629313050c505c404a86aa86f91b2" [5]=> string(54) "write fc1629313050c505c404a86aa86f91b2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read fc1629313050c505c404a86aa86f91b2" [9]=> string(40) "destroy fc1629313050c505c404a86aa86f91b2" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=14e85050dd0979c0b6cfb9b4be9db9da" string(32) "14e85050dd0979c0b6cfb9b4be9db9da" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 14e85050dd0979c0b6cfb9b4be9db9da" [3]=> string(52) "current session_id: 14e85050dd0979c0b6cfb9b4be9db9da" [4]=> string(52) "current session_id: 14e85050dd0979c0b6cfb9b4be9db9da" [5]=> string(54) "write 14e85050dd0979c0b6cfb9b4be9db9da: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 14e85050dd0979c0b6cfb9b4be9db9da" [9]=> string(40) "destroy 14e85050dd0979c0b6cfb9b4be9db9da" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.23
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=69a89aa7cf18993573f0a4e839d22cf1" string(32) "69a89aa7cf18993573f0a4e839d22cf1" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 69a89aa7cf18993573f0a4e839d22cf1" [3]=> string(52) "current session_id: 69a89aa7cf18993573f0a4e839d22cf1" [4]=> string(52) "current session_id: 69a89aa7cf18993573f0a4e839d22cf1" [5]=> string(54) "write 69a89aa7cf18993573f0a4e839d22cf1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 69a89aa7cf18993573f0a4e839d22cf1" [9]=> string(40) "destroy 69a89aa7cf18993573f0a4e839d22cf1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.22
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=82f8541e1a9fb77826d7c5d86b4f0244" string(32) "82f8541e1a9fb77826d7c5d86b4f0244" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 82f8541e1a9fb77826d7c5d86b4f0244" [3]=> string(52) "current session_id: 82f8541e1a9fb77826d7c5d86b4f0244" [4]=> string(52) "current session_id: 82f8541e1a9fb77826d7c5d86b4f0244" [5]=> string(54) "write 82f8541e1a9fb77826d7c5d86b4f0244: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 82f8541e1a9fb77826d7c5d86b4f0244" [9]=> string(40) "destroy 82f8541e1a9fb77826d7c5d86b4f0244" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.21
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=50a898500340ad72b49336642c260e54" string(32) "50a898500340ad72b49336642c260e54" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 50a898500340ad72b49336642c260e54" [3]=> string(52) "current session_id: 50a898500340ad72b49336642c260e54" [4]=> string(52) "current session_id: 50a898500340ad72b49336642c260e54" [5]=> string(54) "write 50a898500340ad72b49336642c260e54: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 50a898500340ad72b49336642c260e54" [9]=> string(40) "destroy 50a898500340ad72b49336642c260e54" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.20
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=1e997fbf3c1868bd7fca16640a8953b1" string(32) "1e997fbf3c1868bd7fca16640a8953b1" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1e997fbf3c1868bd7fca16640a8953b1" [3]=> string(52) "current session_id: 1e997fbf3c1868bd7fca16640a8953b1" [4]=> string(52) "current session_id: 1e997fbf3c1868bd7fca16640a8953b1" [5]=> string(54) "write 1e997fbf3c1868bd7fca16640a8953b1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1e997fbf3c1868bd7fca16640a8953b1" [9]=> string(40) "destroy 1e997fbf3c1868bd7fca16640a8953b1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.19
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=584bf1d719ade6fce1f5db52924dec2b" string(32) "584bf1d719ade6fce1f5db52924dec2b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 584bf1d719ade6fce1f5db52924dec2b" [3]=> string(52) "current session_id: 584bf1d719ade6fce1f5db52924dec2b" [4]=> string(52) "current session_id: 584bf1d719ade6fce1f5db52924dec2b" [5]=> string(54) "write 584bf1d719ade6fce1f5db52924dec2b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 584bf1d719ade6fce1f5db52924dec2b" [9]=> string(40) "destroy 584bf1d719ade6fce1f5db52924dec2b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.18
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=c2ac85e22000863f37a010f626d02e00" string(32) "c2ac85e22000863f37a010f626d02e00" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c2ac85e22000863f37a010f626d02e00" [3]=> string(52) "current session_id: c2ac85e22000863f37a010f626d02e00" [4]=> string(52) "current session_id: c2ac85e22000863f37a010f626d02e00" [5]=> string(54) "write c2ac85e22000863f37a010f626d02e00: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c2ac85e22000863f37a010f626d02e00" [9]=> string(40) "destroy c2ac85e22000863f37a010f626d02e00" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.17
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=7b531a0dac76569ae91bacd9480b55e4" string(32) "7b531a0dac76569ae91bacd9480b55e4" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7b531a0dac76569ae91bacd9480b55e4" [3]=> string(52) "current session_id: 7b531a0dac76569ae91bacd9480b55e4" [4]=> string(52) "current session_id: 7b531a0dac76569ae91bacd9480b55e4" [5]=> string(54) "write 7b531a0dac76569ae91bacd9480b55e4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7b531a0dac76569ae91bacd9480b55e4" [9]=> string(40) "destroy 7b531a0dac76569ae91bacd9480b55e4" [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(7) "gc 1440" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.16
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=af0feea6e9ffac3755fa71a4e9b0f1e9" string(32) "af0feea6e9ffac3755fa71a4e9b0f1e9" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read af0feea6e9ffac3755fa71a4e9b0f1e9" [3]=> string(52) "current session_id: af0feea6e9ffac3755fa71a4e9b0f1e9" [4]=> string(52) "current session_id: af0feea6e9ffac3755fa71a4e9b0f1e9" [5]=> string(54) "write af0feea6e9ffac3755fa71a4e9b0f1e9: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read af0feea6e9ffac3755fa71a4e9b0f1e9" [9]=> string(40) "destroy af0feea6e9ffac3755fa71a4e9b0f1e9" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.15
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=31afff06b46eedae9d039d558e73f0f0" string(32) "31afff06b46eedae9d039d558e73f0f0" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 31afff06b46eedae9d039d558e73f0f0" [3]=> string(52) "current session_id: 31afff06b46eedae9d039d558e73f0f0" [4]=> string(52) "current session_id: 31afff06b46eedae9d039d558e73f0f0" [5]=> string(54) "write 31afff06b46eedae9d039d558e73f0f0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 31afff06b46eedae9d039d558e73f0f0" [9]=> string(7) "gc 1440" [10]=> string(40) "destroy 31afff06b46eedae9d039d558e73f0f0" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.14
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=2c253d62a5cb818ccf733c1cb5b9469e" string(32) "2c253d62a5cb818ccf733c1cb5b9469e" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2c253d62a5cb818ccf733c1cb5b9469e" [3]=> string(52) "current session_id: 2c253d62a5cb818ccf733c1cb5b9469e" [4]=> string(52) "current session_id: 2c253d62a5cb818ccf733c1cb5b9469e" [5]=> string(54) "write 2c253d62a5cb818ccf733c1cb5b9469e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 2c253d62a5cb818ccf733c1cb5b9469e" [9]=> string(40) "destroy 2c253d62a5cb818ccf733c1cb5b9469e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.13
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=80f9a9e32eeff4fc4aaaec75785fca1c" string(32) "80f9a9e32eeff4fc4aaaec75785fca1c" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 80f9a9e32eeff4fc4aaaec75785fca1c" [3]=> string(52) "current session_id: 80f9a9e32eeff4fc4aaaec75785fca1c" [4]=> string(52) "current session_id: 80f9a9e32eeff4fc4aaaec75785fca1c" [5]=> string(54) "write 80f9a9e32eeff4fc4aaaec75785fca1c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 80f9a9e32eeff4fc4aaaec75785fca1c" [9]=> string(40) "destroy 80f9a9e32eeff4fc4aaaec75785fca1c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.12
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=2fc5b0232dcdf1717c229b0ec862a180" string(32) "2fc5b0232dcdf1717c229b0ec862a180" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2fc5b0232dcdf1717c229b0ec862a180" [3]=> string(52) "current session_id: 2fc5b0232dcdf1717c229b0ec862a180" [4]=> string(52) "current session_id: 2fc5b0232dcdf1717c229b0ec862a180" [5]=> string(54) "write 2fc5b0232dcdf1717c229b0ec862a180: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 2fc5b0232dcdf1717c229b0ec862a180" [9]=> string(7) "gc 1440" [10]=> string(40) "destroy 2fc5b0232dcdf1717c229b0ec862a180" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.5.11
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=0ea54d0fbe91562c9aedd44c66f0f3a3" string(32) "0ea54d0fbe91562c9aedd44c66f0f3a3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0ea54d0fbe91562c9aedd44c66f0f3a3" [3]=> string(52) "current session_id: 0ea54d0fbe91562c9aedd44c66f0f3a3" [4]=> string(52) "current session_id: 0ea54d0fbe91562c9aedd44c66f0f3a3" [5]=> string(54) "write 0ea54d0fbe91562c9aedd44c66f0f3a3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0ea54d0fbe91562c9aedd44c66f0f3a3" [9]=> string(40) "destroy 0ea54d0fbe91562c9aedd44c66f0f3a3" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.10
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=26d79d7a4c701319dc71aaf24f588028" string(32) "26d79d7a4c701319dc71aaf24f588028" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 26d79d7a4c701319dc71aaf24f588028" [3]=> string(52) "current session_id: 26d79d7a4c701319dc71aaf24f588028" [4]=> string(52) "current session_id: 26d79d7a4c701319dc71aaf24f588028" [5]=> string(54) "write 26d79d7a4c701319dc71aaf24f588028: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 26d79d7a4c701319dc71aaf24f588028" [9]=> string(40) "destroy 26d79d7a4c701319dc71aaf24f588028" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.9
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=b5a5ceb3f067f2c9fedc2d17572d7384" string(32) "b5a5ceb3f067f2c9fedc2d17572d7384" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b5a5ceb3f067f2c9fedc2d17572d7384" [3]=> string(52) "current session_id: b5a5ceb3f067f2c9fedc2d17572d7384" [4]=> string(52) "current session_id: b5a5ceb3f067f2c9fedc2d17572d7384" [5]=> string(54) "write b5a5ceb3f067f2c9fedc2d17572d7384: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b5a5ceb3f067f2c9fedc2d17572d7384" [9]=> string(40) "destroy b5a5ceb3f067f2c9fedc2d17572d7384" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.8
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=a0f234832294cf51e41093779a8ca4d3" string(32) "a0f234832294cf51e41093779a8ca4d3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a0f234832294cf51e41093779a8ca4d3" [3]=> string(52) "current session_id: a0f234832294cf51e41093779a8ca4d3" [4]=> string(52) "current session_id: a0f234832294cf51e41093779a8ca4d3" [5]=> string(54) "write a0f234832294cf51e41093779a8ca4d3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a0f234832294cf51e41093779a8ca4d3" [9]=> string(40) "destroy a0f234832294cf51e41093779a8ca4d3" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.7
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=b3185d5f37fb4e096e9e7f1771c337fb" string(32) "b3185d5f37fb4e096e9e7f1771c337fb" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b3185d5f37fb4e096e9e7f1771c337fb" [3]=> string(52) "current session_id: b3185d5f37fb4e096e9e7f1771c337fb" [4]=> string(52) "current session_id: b3185d5f37fb4e096e9e7f1771c337fb" [5]=> string(54) "write b3185d5f37fb4e096e9e7f1771c337fb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b3185d5f37fb4e096e9e7f1771c337fb" [9]=> string(40) "destroy b3185d5f37fb4e096e9e7f1771c337fb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.6
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=3f9baeacb1c3100e1ca2b6e4f4b3544c" string(32) "3f9baeacb1c3100e1ca2b6e4f4b3544c" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3f9baeacb1c3100e1ca2b6e4f4b3544c" [3]=> string(52) "current session_id: 3f9baeacb1c3100e1ca2b6e4f4b3544c" [4]=> string(52) "current session_id: 3f9baeacb1c3100e1ca2b6e4f4b3544c" [5]=> string(54) "write 3f9baeacb1c3100e1ca2b6e4f4b3544c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3f9baeacb1c3100e1ca2b6e4f4b3544c" [9]=> string(40) "destroy 3f9baeacb1c3100e1ca2b6e4f4b3544c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.5
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=2bc7178624dbe9b308e6050ea83face8" string(32) "2bc7178624dbe9b308e6050ea83face8" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2bc7178624dbe9b308e6050ea83face8" [3]=> string(52) "current session_id: 2bc7178624dbe9b308e6050ea83face8" [4]=> string(52) "current session_id: 2bc7178624dbe9b308e6050ea83face8" [5]=> string(54) "write 2bc7178624dbe9b308e6050ea83face8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 2bc7178624dbe9b308e6050ea83face8" [9]=> string(40) "destroy 2bc7178624dbe9b308e6050ea83face8" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.4
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=835d923ee945b45ba0278cff3eb66a4a" string(32) "835d923ee945b45ba0278cff3eb66a4a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 835d923ee945b45ba0278cff3eb66a4a" [3]=> string(52) "current session_id: 835d923ee945b45ba0278cff3eb66a4a" [4]=> string(52) "current session_id: 835d923ee945b45ba0278cff3eb66a4a" [5]=> string(54) "write 835d923ee945b45ba0278cff3eb66a4a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 835d923ee945b45ba0278cff3eb66a4a" [9]=> string(40) "destroy 835d923ee945b45ba0278cff3eb66a4a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.3
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=ca3bf61b8a077b98181e913c4a727847" string(32) "ca3bf61b8a077b98181e913c4a727847" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ca3bf61b8a077b98181e913c4a727847" [3]=> string(52) "current session_id: ca3bf61b8a077b98181e913c4a727847" [4]=> string(52) "current session_id: ca3bf61b8a077b98181e913c4a727847" [5]=> string(54) "write ca3bf61b8a077b98181e913c4a727847: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ca3bf61b8a077b98181e913c4a727847" [9]=> string(40) "destroy ca3bf61b8a077b98181e913c4a727847" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.2
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=20d9676b8bae7bdbaad924a70bfb1d1f" string(32) "20d9676b8bae7bdbaad924a70bfb1d1f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 20d9676b8bae7bdbaad924a70bfb1d1f" [3]=> string(52) "current session_id: 20d9676b8bae7bdbaad924a70bfb1d1f" [4]=> string(52) "current session_id: 20d9676b8bae7bdbaad924a70bfb1d1f" [5]=> string(54) "write 20d9676b8bae7bdbaad924a70bfb1d1f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 20d9676b8bae7bdbaad924a70bfb1d1f" [9]=> string(40) "destroy 20d9676b8bae7bdbaad924a70bfb1d1f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.1
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=ea94a9f3a13d1ad3f2d9324bd54d27f4" string(32) "ea94a9f3a13d1ad3f2d9324bd54d27f4" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ea94a9f3a13d1ad3f2d9324bd54d27f4" [3]=> string(52) "current session_id: ea94a9f3a13d1ad3f2d9324bd54d27f4" [4]=> string(52) "current session_id: ea94a9f3a13d1ad3f2d9324bd54d27f4" [5]=> string(54) "write ea94a9f3a13d1ad3f2d9324bd54d27f4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ea94a9f3a13d1ad3f2d9324bd54d27f4" [9]=> string(40) "destroy ea94a9f3a13d1ad3f2d9324bd54d27f4" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.0
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=3bb0d9932621a34d07f6f12988f5acd2" string(32) "3bb0d9932621a34d07f6f12988f5acd2" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3bb0d9932621a34d07f6f12988f5acd2" [3]=> string(52) "current session_id: 3bb0d9932621a34d07f6f12988f5acd2" [4]=> string(52) "current session_id: 3bb0d9932621a34d07f6f12988f5acd2" [5]=> string(54) "write 3bb0d9932621a34d07f6f12988f5acd2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3bb0d9932621a34d07f6f12988f5acd2" [9]=> string(40) "destroy 3bb0d9932621a34d07f6f12988f5acd2" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=99fc40bb8cb771705f908377123f0ef6" string(32) "99fc40bb8cb771705f908377123f0ef6" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 99fc40bb8cb771705f908377123f0ef6" [3]=> string(52) "current session_id: 99fc40bb8cb771705f908377123f0ef6" [4]=> string(52) "current session_id: 99fc40bb8cb771705f908377123f0ef6" [5]=> string(54) "write 99fc40bb8cb771705f908377123f0ef6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 99fc40bb8cb771705f908377123f0ef6" [9]=> string(40) "destroy 99fc40bb8cb771705f908377123f0ef6" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=be6ec115d6d8f435e3668d7c00bdd66f" string(32) "be6ec115d6d8f435e3668d7c00bdd66f" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read be6ec115d6d8f435e3668d7c00bdd66f" [3]=> string(52) "current session_id: be6ec115d6d8f435e3668d7c00bdd66f" [4]=> string(52) "current session_id: be6ec115d6d8f435e3668d7c00bdd66f" [5]=> string(54) "write be6ec115d6d8f435e3668d7c00bdd66f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read be6ec115d6d8f435e3668d7c00bdd66f" [9]=> string(40) "destroy be6ec115d6d8f435e3668d7c00bdd66f" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=4ceb0afe992291db3b8fc4bc34a181f7" string(32) "4ceb0afe992291db3b8fc4bc34a181f7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4ceb0afe992291db3b8fc4bc34a181f7" [3]=> string(52) "current session_id: 4ceb0afe992291db3b8fc4bc34a181f7" [4]=> string(52) "current session_id: 4ceb0afe992291db3b8fc4bc34a181f7" [5]=> string(54) "write 4ceb0afe992291db3b8fc4bc34a181f7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4ceb0afe992291db3b8fc4bc34a181f7" [9]=> string(40) "destroy 4ceb0afe992291db3b8fc4bc34a181f7" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=6a74f45921c08dc42608f8e833031950" string(32) "6a74f45921c08dc42608f8e833031950" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6a74f45921c08dc42608f8e833031950" [3]=> string(52) "current session_id: 6a74f45921c08dc42608f8e833031950" [4]=> string(52) "current session_id: 6a74f45921c08dc42608f8e833031950" [5]=> string(54) "write 6a74f45921c08dc42608f8e833031950: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6a74f45921c08dc42608f8e833031950" [9]=> string(40) "destroy 6a74f45921c08dc42608f8e833031950" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=dd37e9bcb88fc19e0c02feb211f953b0" string(32) "dd37e9bcb88fc19e0c02feb211f953b0" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dd37e9bcb88fc19e0c02feb211f953b0" [3]=> string(52) "current session_id: dd37e9bcb88fc19e0c02feb211f953b0" [4]=> string(52) "current session_id: dd37e9bcb88fc19e0c02feb211f953b0" [5]=> string(54) "write dd37e9bcb88fc19e0c02feb211f953b0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read dd37e9bcb88fc19e0c02feb211f953b0" [9]=> string(40) "destroy dd37e9bcb88fc19e0c02feb211f953b0" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=049a7dc738c5c0708fae13a8123face5" string(32) "049a7dc738c5c0708fae13a8123face5" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 049a7dc738c5c0708fae13a8123face5" [3]=> string(52) "current session_id: 049a7dc738c5c0708fae13a8123face5" [4]=> string(52) "current session_id: 049a7dc738c5c0708fae13a8123face5" [5]=> string(54) "write 049a7dc738c5c0708fae13a8123face5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 049a7dc738c5c0708fae13a8123face5" [9]=> string(40) "destroy 049a7dc738c5c0708fae13a8123face5" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=ef6c4e723f06195f1ab90b0cd39fde55" string(32) "ef6c4e723f06195f1ab90b0cd39fde55" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ef6c4e723f06195f1ab90b0cd39fde55" [3]=> string(52) "current session_id: ef6c4e723f06195f1ab90b0cd39fde55" [4]=> string(52) "current session_id: ef6c4e723f06195f1ab90b0cd39fde55" [5]=> string(54) "write ef6c4e723f06195f1ab90b0cd39fde55: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ef6c4e723f06195f1ab90b0cd39fde55" [9]=> string(40) "destroy ef6c4e723f06195f1ab90b0cd39fde55" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=8b8a3a7a5eb3649d6bfef77a8bc669c7" string(32) "8b8a3a7a5eb3649d6bfef77a8bc669c7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8b8a3a7a5eb3649d6bfef77a8bc669c7" [3]=> string(52) "current session_id: 8b8a3a7a5eb3649d6bfef77a8bc669c7" [4]=> string(52) "current session_id: 8b8a3a7a5eb3649d6bfef77a8bc669c7" [5]=> string(54) "write 8b8a3a7a5eb3649d6bfef77a8bc669c7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 8b8a3a7a5eb3649d6bfef77a8bc669c7" [9]=> string(40) "destroy 8b8a3a7a5eb3649d6bfef77a8bc669c7" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=5673cb88de2b81a2d1f1a8eba73f5dad" string(32) "5673cb88de2b81a2d1f1a8eba73f5dad" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5673cb88de2b81a2d1f1a8eba73f5dad" [3]=> string(52) "current session_id: 5673cb88de2b81a2d1f1a8eba73f5dad" [4]=> string(52) "current session_id: 5673cb88de2b81a2d1f1a8eba73f5dad" [5]=> string(54) "write 5673cb88de2b81a2d1f1a8eba73f5dad: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5673cb88de2b81a2d1f1a8eba73f5dad" [9]=> string(40) "destroy 5673cb88de2b81a2d1f1a8eba73f5dad" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=d603261723de894cb51b4cbea4cbc796" string(32) "d603261723de894cb51b4cbea4cbc796" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d603261723de894cb51b4cbea4cbc796" [3]=> string(52) "current session_id: d603261723de894cb51b4cbea4cbc796" [4]=> string(52) "current session_id: d603261723de894cb51b4cbea4cbc796" [5]=> string(54) "write d603261723de894cb51b4cbea4cbc796: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d603261723de894cb51b4cbea4cbc796" [9]=> string(40) "destroy d603261723de894cb51b4cbea4cbc796" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=4837c1f8dcbf4d1eeb05e457a24986fc" string(32) "4837c1f8dcbf4d1eeb05e457a24986fc" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4837c1f8dcbf4d1eeb05e457a24986fc" [3]=> string(52) "current session_id: 4837c1f8dcbf4d1eeb05e457a24986fc" [4]=> string(52) "current session_id: 4837c1f8dcbf4d1eeb05e457a24986fc" [5]=> string(54) "write 4837c1f8dcbf4d1eeb05e457a24986fc: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4837c1f8dcbf4d1eeb05e457a24986fc" [9]=> string(40) "destroy 4837c1f8dcbf4d1eeb05e457a24986fc" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=1c311bce5afd4837144c10a4b9591a3a" string(32) "1c311bce5afd4837144c10a4b9591a3a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1c311bce5afd4837144c10a4b9591a3a" [3]=> string(52) "current session_id: 1c311bce5afd4837144c10a4b9591a3a" [4]=> string(52) "current session_id: 1c311bce5afd4837144c10a4b9591a3a" [5]=> string(54) "write 1c311bce5afd4837144c10a4b9591a3a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1c311bce5afd4837144c10a4b9591a3a" [9]=> string(40) "destroy 1c311bce5afd4837144c10a4b9591a3a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.33
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=6fd4a9e54036f201049d4e1f58f90359" string(32) "6fd4a9e54036f201049d4e1f58f90359" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6fd4a9e54036f201049d4e1f58f90359" [3]=> string(52) "current session_id: 6fd4a9e54036f201049d4e1f58f90359" [4]=> string(52) "current session_id: 6fd4a9e54036f201049d4e1f58f90359" [5]=> string(54) "write 6fd4a9e54036f201049d4e1f58f90359: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6fd4a9e54036f201049d4e1f58f90359" [9]=> string(40) "destroy 6fd4a9e54036f201049d4e1f58f90359" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=4aa412fd1d979f991f4b7fa403aee78c" string(32) "4aa412fd1d979f991f4b7fa403aee78c" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4aa412fd1d979f991f4b7fa403aee78c" [3]=> string(52) "current session_id: 4aa412fd1d979f991f4b7fa403aee78c" [4]=> string(52) "current session_id: 4aa412fd1d979f991f4b7fa403aee78c" [5]=> string(54) "write 4aa412fd1d979f991f4b7fa403aee78c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4aa412fd1d979f991f4b7fa403aee78c" [9]=> string(40) "destroy 4aa412fd1d979f991f4b7fa403aee78c" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=ed258a14022d036486b9f636080728ed" string(32) "ed258a14022d036486b9f636080728ed" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ed258a14022d036486b9f636080728ed" [3]=> string(52) "current session_id: ed258a14022d036486b9f636080728ed" [4]=> string(52) "current session_id: ed258a14022d036486b9f636080728ed" [5]=> string(54) "write ed258a14022d036486b9f636080728ed: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ed258a14022d036486b9f636080728ed" [9]=> string(40) "destroy ed258a14022d036486b9f636080728ed" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=280e40a74f2c9634ebe0fb247d7022db" string(32) "280e40a74f2c9634ebe0fb247d7022db" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 280e40a74f2c9634ebe0fb247d7022db" [3]=> string(52) "current session_id: 280e40a74f2c9634ebe0fb247d7022db" [4]=> string(52) "current session_id: 280e40a74f2c9634ebe0fb247d7022db" [5]=> string(54) "write 280e40a74f2c9634ebe0fb247d7022db: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 280e40a74f2c9634ebe0fb247d7022db" [9]=> string(40) "destroy 280e40a74f2c9634ebe0fb247d7022db" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=cc43bbbf1f6fb5e9f189d80ab317d1ae" string(32) "cc43bbbf1f6fb5e9f189d80ab317d1ae" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cc43bbbf1f6fb5e9f189d80ab317d1ae" [3]=> string(52) "current session_id: cc43bbbf1f6fb5e9f189d80ab317d1ae" [4]=> string(52) "current session_id: cc43bbbf1f6fb5e9f189d80ab317d1ae" [5]=> string(54) "write cc43bbbf1f6fb5e9f189d80ab317d1ae: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read cc43bbbf1f6fb5e9f189d80ab317d1ae" [9]=> string(40) "destroy cc43bbbf1f6fb5e9f189d80ab317d1ae" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=0c51b3f1a5832c1574bc0da146ba4f13" string(32) "0c51b3f1a5832c1574bc0da146ba4f13" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0c51b3f1a5832c1574bc0da146ba4f13" [3]=> string(52) "current session_id: 0c51b3f1a5832c1574bc0da146ba4f13" [4]=> string(52) "current session_id: 0c51b3f1a5832c1574bc0da146ba4f13" [5]=> string(54) "write 0c51b3f1a5832c1574bc0da146ba4f13: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0c51b3f1a5832c1574bc0da146ba4f13" [9]=> string(40) "destroy 0c51b3f1a5832c1574bc0da146ba4f13" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=b53ee8978212e7aab50c70cc78949db0" string(32) "b53ee8978212e7aab50c70cc78949db0" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b53ee8978212e7aab50c70cc78949db0" [3]=> string(52) "current session_id: b53ee8978212e7aab50c70cc78949db0" [4]=> string(52) "current session_id: b53ee8978212e7aab50c70cc78949db0" [5]=> string(54) "write b53ee8978212e7aab50c70cc78949db0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b53ee8978212e7aab50c70cc78949db0" [9]=> string(40) "destroy b53ee8978212e7aab50c70cc78949db0" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=63ac726201eac70446662003f004d1bc" string(32) "63ac726201eac70446662003f004d1bc" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 63ac726201eac70446662003f004d1bc" [3]=> string(52) "current session_id: 63ac726201eac70446662003f004d1bc" [4]=> string(52) "current session_id: 63ac726201eac70446662003f004d1bc" [5]=> string(54) "write 63ac726201eac70446662003f004d1bc: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 63ac726201eac70446662003f004d1bc" [9]=> string(40) "destroy 63ac726201eac70446662003f004d1bc" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=94766bb8e29ab652bbeba68b2cf24fc7" string(32) "94766bb8e29ab652bbeba68b2cf24fc7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 94766bb8e29ab652bbeba68b2cf24fc7" [3]=> string(52) "current session_id: 94766bb8e29ab652bbeba68b2cf24fc7" [4]=> string(52) "current session_id: 94766bb8e29ab652bbeba68b2cf24fc7" [5]=> string(54) "write 94766bb8e29ab652bbeba68b2cf24fc7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 94766bb8e29ab652bbeba68b2cf24fc7" [9]=> string(40) "destroy 94766bb8e29ab652bbeba68b2cf24fc7" [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(7) "gc 1440" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> 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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=8dea3bef9d286a2aeb17c0e6fc2ac925" string(32) "8dea3bef9d286a2aeb17c0e6fc2ac925" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8dea3bef9d286a2aeb17c0e6fc2ac925" [3]=> string(52) "current session_id: 8dea3bef9d286a2aeb17c0e6fc2ac925" [4]=> string(52) "current session_id: 8dea3bef9d286a2aeb17c0e6fc2ac925" [5]=> string(54) "write 8dea3bef9d286a2aeb17c0e6fc2ac925: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 8dea3bef9d286a2aeb17c0e6fc2ac925" [9]=> string(40) "destroy 8dea3bef9d286a2aeb17c0e6fc2ac925" [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(7) "gc 1440" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> 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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=b68edc8e3862ca843eb135c152eba4bd" string(32) "b68edc8e3862ca843eb135c152eba4bd" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b68edc8e3862ca843eb135c152eba4bd" [3]=> string(52) "current session_id: b68edc8e3862ca843eb135c152eba4bd" [4]=> string(52) "current session_id: b68edc8e3862ca843eb135c152eba4bd" [5]=> string(54) "write b68edc8e3862ca843eb135c152eba4bd: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b68edc8e3862ca843eb135c152eba4bd" [9]=> string(40) "destroy b68edc8e3862ca843eb135c152eba4bd" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=9efe9a5bd84404d6748578162d890207" string(32) "9efe9a5bd84404d6748578162d890207" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9efe9a5bd84404d6748578162d890207" [3]=> string(52) "current session_id: 9efe9a5bd84404d6748578162d890207" [4]=> string(52) "current session_id: 9efe9a5bd84404d6748578162d890207" [5]=> string(54) "write 9efe9a5bd84404d6748578162d890207: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9efe9a5bd84404d6748578162d890207" [9]=> string(40) "destroy 9efe9a5bd84404d6748578162d890207" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=b066a85d31a48490244b98a2e714fbcd" string(32) "b066a85d31a48490244b98a2e714fbcd" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b066a85d31a48490244b98a2e714fbcd" [3]=> string(52) "current session_id: b066a85d31a48490244b98a2e714fbcd" [4]=> string(52) "current session_id: b066a85d31a48490244b98a2e714fbcd" [5]=> string(54) "write b066a85d31a48490244b98a2e714fbcd: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b066a85d31a48490244b98a2e714fbcd" [9]=> string(40) "destroy b066a85d31a48490244b98a2e714fbcd" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=30e6e5b39c963ac4e83858ffd9d82469" string(32) "30e6e5b39c963ac4e83858ffd9d82469" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 30e6e5b39c963ac4e83858ffd9d82469" [3]=> string(52) "current session_id: 30e6e5b39c963ac4e83858ffd9d82469" [4]=> string(52) "current session_id: 30e6e5b39c963ac4e83858ffd9d82469" [5]=> string(54) "write 30e6e5b39c963ac4e83858ffd9d82469: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 30e6e5b39c963ac4e83858ffd9d82469" [9]=> string(40) "destroy 30e6e5b39c963ac4e83858ffd9d82469" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=9f9e3047622d74d941bb3c71d8c81f27" string(32) "9f9e3047622d74d941bb3c71d8c81f27" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9f9e3047622d74d941bb3c71d8c81f27" [3]=> string(52) "current session_id: 9f9e3047622d74d941bb3c71d8c81f27" [4]=> string(52) "current session_id: 9f9e3047622d74d941bb3c71d8c81f27" [5]=> string(54) "write 9f9e3047622d74d941bb3c71d8c81f27: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9f9e3047622d74d941bb3c71d8c81f27" [9]=> string(40) "destroy 9f9e3047622d74d941bb3c71d8c81f27" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=791c6677ee2827b2a4355de9fa3a94bb" string(32) "791c6677ee2827b2a4355de9fa3a94bb" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 791c6677ee2827b2a4355de9fa3a94bb" [3]=> string(52) "current session_id: 791c6677ee2827b2a4355de9fa3a94bb" [4]=> string(52) "current session_id: 791c6677ee2827b2a4355de9fa3a94bb" [5]=> string(54) "write 791c6677ee2827b2a4355de9fa3a94bb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 791c6677ee2827b2a4355de9fa3a94bb" [9]=> string(40) "destroy 791c6677ee2827b2a4355de9fa3a94bb" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=a4e7a09764e745fae56eccef2f4560a3" string(32) "a4e7a09764e745fae56eccef2f4560a3" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a4e7a09764e745fae56eccef2f4560a3" [3]=> string(52) "current session_id: a4e7a09764e745fae56eccef2f4560a3" [4]=> string(52) "current session_id: a4e7a09764e745fae56eccef2f4560a3" [5]=> string(54) "write a4e7a09764e745fae56eccef2f4560a3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a4e7a09764e745fae56eccef2f4560a3" [9]=> string(40) "destroy a4e7a09764e745fae56eccef2f4560a3" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=e17d5c3ac9945781dae2fb00496b3091" string(32) "e17d5c3ac9945781dae2fb00496b3091" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e17d5c3ac9945781dae2fb00496b3091" [3]=> string(52) "current session_id: e17d5c3ac9945781dae2fb00496b3091" [4]=> string(52) "current session_id: e17d5c3ac9945781dae2fb00496b3091" [5]=> string(54) "write e17d5c3ac9945781dae2fb00496b3091: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e17d5c3ac9945781dae2fb00496b3091" [9]=> string(40) "destroy e17d5c3ac9945781dae2fb00496b3091" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=a9638d3591a07921873080418c45fa1b" string(32) "a9638d3591a07921873080418c45fa1b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a9638d3591a07921873080418c45fa1b" [3]=> string(52) "current session_id: a9638d3591a07921873080418c45fa1b" [4]=> string(52) "current session_id: a9638d3591a07921873080418c45fa1b" [5]=> string(54) "write a9638d3591a07921873080418c45fa1b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a9638d3591a07921873080418c45fa1b" [9]=> string(40) "destroy a9638d3591a07921873080418c45fa1b" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=aadc5f580a12c7bf5565dc6fbb3780f1" string(32) "aadc5f580a12c7bf5565dc6fbb3780f1" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read aadc5f580a12c7bf5565dc6fbb3780f1" [3]=> string(52) "current session_id: aadc5f580a12c7bf5565dc6fbb3780f1" [4]=> string(52) "current session_id: aadc5f580a12c7bf5565dc6fbb3780f1" [5]=> string(54) "write aadc5f580a12c7bf5565dc6fbb3780f1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read aadc5f580a12c7bf5565dc6fbb3780f1" [9]=> string(40) "destroy aadc5f580a12c7bf5565dc6fbb3780f1" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=51c59031ba23c8d2a06f4fb06b5b6e12" string(32) "51c59031ba23c8d2a06f4fb06b5b6e12" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 51c59031ba23c8d2a06f4fb06b5b6e12" [3]=> string(52) "current session_id: 51c59031ba23c8d2a06f4fb06b5b6e12" [4]=> string(52) "current session_id: 51c59031ba23c8d2a06f4fb06b5b6e12" [5]=> string(54) "write 51c59031ba23c8d2a06f4fb06b5b6e12: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 51c59031ba23c8d2a06f4fb06b5b6e12" [9]=> string(40) "destroy 51c59031ba23c8d2a06f4fb06b5b6e12" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=e2aeac30704a7a2059c36cce2f29b582" string(32) "e2aeac30704a7a2059c36cce2f29b582" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e2aeac30704a7a2059c36cce2f29b582" [3]=> string(52) "current session_id: e2aeac30704a7a2059c36cce2f29b582" [4]=> string(52) "current session_id: e2aeac30704a7a2059c36cce2f29b582" [5]=> string(54) "write e2aeac30704a7a2059c36cce2f29b582: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e2aeac30704a7a2059c36cce2f29b582" [9]=> string(40) "destroy e2aeac30704a7a2059c36cce2f29b582" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=1bf34061d026b348b0c55e62139c229a" string(32) "1bf34061d026b348b0c55e62139c229a" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1bf34061d026b348b0c55e62139c229a" [3]=> string(52) "current session_id: 1bf34061d026b348b0c55e62139c229a" [4]=> string(52) "current session_id: 1bf34061d026b348b0c55e62139c229a" [5]=> string(54) "write 1bf34061d026b348b0c55e62139c229a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1bf34061d026b348b0c55e62139c229a" [9]=> string(40) "destroy 1bf34061d026b348b0c55e62139c229a" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=66cb2c6098000f89338c7d4762afee52" string(32) "66cb2c6098000f89338c7d4762afee52" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 66cb2c6098000f89338c7d4762afee52" [3]=> string(52) "current session_id: 66cb2c6098000f89338c7d4762afee52" [4]=> string(52) "current session_id: 66cb2c6098000f89338c7d4762afee52" [5]=> string(54) "write 66cb2c6098000f89338c7d4762afee52: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 66cb2c6098000f89338c7d4762afee52" [9]=> string(40) "destroy 66cb2c6098000f89338c7d4762afee52" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=10ee7de1255ab844796f7c779d3b6a0b" string(32) "10ee7de1255ab844796f7c779d3b6a0b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 10ee7de1255ab844796f7c779d3b6a0b" [3]=> string(52) "current session_id: 10ee7de1255ab844796f7c779d3b6a0b" [4]=> string(52) "current session_id: 10ee7de1255ab844796f7c779d3b6a0b" [5]=> string(54) "write 10ee7de1255ab844796f7c779d3b6a0b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 10ee7de1255ab844796f7c779d3b6a0b" [9]=> string(40) "destroy 10ee7de1255ab844796f7c779d3b6a0b" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=4cd501df3a7f169fef4888d14bb02094" string(32) "4cd501df3a7f169fef4888d14bb02094" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4cd501df3a7f169fef4888d14bb02094" [3]=> string(52) "current session_id: 4cd501df3a7f169fef4888d14bb02094" [4]=> string(52) "current session_id: 4cd501df3a7f169fef4888d14bb02094" [5]=> string(54) "write 4cd501df3a7f169fef4888d14bb02094: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4cd501df3a7f169fef4888d14bb02094" [9]=> string(40) "destroy 4cd501df3a7f169fef4888d14bb02094" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=276af48ba267ed73bfca0010249cd3af" string(32) "276af48ba267ed73bfca0010249cd3af" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 276af48ba267ed73bfca0010249cd3af" [3]=> string(52) "current session_id: 276af48ba267ed73bfca0010249cd3af" [4]=> string(52) "current session_id: 276af48ba267ed73bfca0010249cd3af" [5]=> string(54) "write 276af48ba267ed73bfca0010249cd3af: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 276af48ba267ed73bfca0010249cd3af" [9]=> string(40) "destroy 276af48ba267ed73bfca0010249cd3af" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=b875485f06582826effdf7eef4a43cb9" string(32) "b875485f06582826effdf7eef4a43cb9" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b875485f06582826effdf7eef4a43cb9" [3]=> string(52) "current session_id: b875485f06582826effdf7eef4a43cb9" [4]=> string(52) "current session_id: b875485f06582826effdf7eef4a43cb9" [5]=> string(54) "write b875485f06582826effdf7eef4a43cb9: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b875485f06582826effdf7eef4a43cb9" [9]=> string(40) "destroy b875485f06582826effdf7eef4a43cb9" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=6654031086bd63be5a356c8430df7a5b" string(32) "6654031086bd63be5a356c8430df7a5b" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6654031086bd63be5a356c8430df7a5b" [3]=> string(52) "current session_id: 6654031086bd63be5a356c8430df7a5b" [4]=> string(52) "current session_id: 6654031086bd63be5a356c8430df7a5b" [5]=> string(54) "write 6654031086bd63be5a356c8430df7a5b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6654031086bd63be5a356c8430df7a5b" [9]=> string(40) "destroy 6654031086bd63be5a356c8430df7a5b" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=ab24a3d3f9499c16f3f6e0ad3371a794" string(32) "ab24a3d3f9499c16f3f6e0ad3371a794" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ab24a3d3f9499c16f3f6e0ad3371a794" [3]=> string(52) "current session_id: ab24a3d3f9499c16f3f6e0ad3371a794" [4]=> string(52) "current session_id: ab24a3d3f9499c16f3f6e0ad3371a794" [5]=> string(54) "write ab24a3d3f9499c16f3f6e0ad3371a794: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ab24a3d3f9499c16f3f6e0ad3371a794" [9]=> string(40) "destroy ab24a3d3f9499c16f3f6e0ad3371a794" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=4ed0a3b391d3b5b1fe73e4c29c0111c0" string(32) "4ed0a3b391d3b5b1fe73e4c29c0111c0" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4ed0a3b391d3b5b1fe73e4c29c0111c0" [3]=> string(52) "current session_id: 4ed0a3b391d3b5b1fe73e4c29c0111c0" [4]=> string(52) "current session_id: 4ed0a3b391d3b5b1fe73e4c29c0111c0" [5]=> string(54) "write 4ed0a3b391d3b5b1fe73e4c29c0111c0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4ed0a3b391d3b5b1fe73e4c29c0111c0" [9]=> string(40) "destroy 4ed0a3b391d3b5b1fe73e4c29c0111c0" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=9aea48a309d4f3c33d870dbbd78423f7" string(32) "9aea48a309d4f3c33d870dbbd78423f7" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9aea48a309d4f3c33d870dbbd78423f7" [3]=> string(52) "current session_id: 9aea48a309d4f3c33d870dbbd78423f7" [4]=> string(52) "current session_id: 9aea48a309d4f3c33d870dbbd78423f7" [5]=> string(54) "write 9aea48a309d4f3c33d870dbbd78423f7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9aea48a309d4f3c33d870dbbd78423f7" [9]=> string(40) "destroy 9aea48a309d4f3c33d870dbbd78423f7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.1
int(0) int(1) int(2) int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=e72565f359cfd7cbde88b953358a4a95" string(32) "e72565f359cfd7cbde88b953358a4a95" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e72565f359cfd7cbde88b953358a4a95" [3]=> string(52) "current session_id: e72565f359cfd7cbde88b953358a4a95" [4]=> string(52) "current session_id: e72565f359cfd7cbde88b953358a4a95" [5]=> string(54) "write e72565f359cfd7cbde88b953358a4a95: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e72565f359cfd7cbde88b953358a4a95" [9]=> string(40) "destroy e72565f359cfd7cbde88b953358a4a95" [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/kClhp:44) in /in/kClhp on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/kClhp on line 60 string(42) "PHPSESSID=dc5770933b0becf7257b4717162e08fc" string(32) "dc5770933b0becf7257b4717162e08fc" int(1) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 68 int(2) Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/kClhp:44) in /in/kClhp on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/kClhp:44) in /in/kClhp on line 76 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dc5770933b0becf7257b4717162e08fc" [3]=> string(52) "current session_id: dc5770933b0becf7257b4717162e08fc" [4]=> string(52) "current session_id: dc5770933b0becf7257b4717162e08fc" [5]=> string(54) "write dc5770933b0becf7257b4717162e08fc: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read dc5770933b0becf7257b4717162e08fc" [9]=> string(40) "destroy dc5770933b0becf7257b4717162e08fc" [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/kClhp 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/kClhp on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/kClhp 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/kClhp on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/kClhp 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/kClhp 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/kClhp on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/kClhp on line 4
Process exited with code 255.

preferences:
347.26 ms | 401 KiB | 459 Q