3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MySessionHandler implements \SessionHandlerInterface { public $messages = array(); public function open($savePath, $sessionName) { $this->messages[] = 'open ' . $sessionName; } public function close() { $this->messages[] = 'close'; } public function read($id) { $this->messages[] = 'read ' . $id; } public function write($id, $data) { $this->messages[] = 'write ' . $id . ': ' . $data; } public function destroy($id) { $this->messages[] = 'destroy ' . $id; } public function gc($maxlifetime) { $this->messages[] = 'gc ' . var_export($maxlifetime, true); } public function __destruct() { var_dump($this->messages); } } $handler = new MySessionHandler(); $handler->messages[] = 'session_status(): ' . session_status(); $handler->messages[] = 'session_id before start: ' . var_export(session_id(), true); session_set_save_handler($handler, true); $handler->messages[] = 'isset($_SESSION): ' . var_export(isset($_SESSION), true); $_SESSION['before'] = 'start'; $handler->messages[] = 'headers_sent: ' . var_export(headers_sent(), true); echo 'S'; session_start(); $handler->messages[] = 'headers_sent: ' . var_export(headers_sent(), true); $handler->messages[] = 'headers_list: ' . var_export(headers_list(), true); $_SESSION['foo'] = 'bar'; $handler->messages[] = 'current session_id: ' . session_id(); session_regenerate_id(true); $handler->messages[] = 'current session_id: ' . session_id(); session_write_close(); $handler->messages[] = '$_SESSION after close: ' . var_export($_SESSION, true); $handler->messages[] = 'session_id after close: ' . session_id(); session_start(); session_destroy(); $handler->messages[] = '$_SESSION after destroy: ' . 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/qfFTd 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/qfFTd 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/qfFTd 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/qfFTd 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/qfFTd 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/qfFTd on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/qfFTd on line 48 S Warning: session_start(): Session cannot be started after headers have already been sent in /in/qfFTd on line 55 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/qfFTd on line 63 Warning: session_start(): Session cannot be started after headers have already been sent in /in/qfFTd on line 70 Warning: session_destroy(): Trying to destroy uninitialized session in /in/qfFTd on line 71 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/qfFTd on line 75 Warning: session_start(): Session cannot be started after headers have already been sent in /in/qfFTd on line 76 array(12) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(18) "headers_sent: true" [4]=> string(18) "headers_sent: true" [5]=> string(23) "headers_list: array ( )" [6]=> string(20) "current session_id: " [7]=> string(20) "current session_id: " [8]=> string(73) "$_SESSION after close: array ( 'before' => 'start', 'foo' => 'bar', )" [9]=> string(24) "session_id after close: " [10]=> string(75) "$_SESSION after destroy: array ( 'before' => 'start', 'foo' => 'bar', )" [11]=> string(22) "current session_id: ''" }
Output for 8.0.0 - 8.0.30
S Warning: session_start(): Session cannot be started after headers have already been sent in /in/qfFTd on line 55 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/qfFTd on line 63 Warning: session_start(): Session cannot be started after headers have already been sent in /in/qfFTd on line 70 Warning: session_destroy(): Trying to destroy uninitialized session in /in/qfFTd on line 71 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/qfFTd on line 75 Warning: session_start(): Session cannot be started after headers have already been sent in /in/qfFTd on line 76 array(12) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(18) "headers_sent: true" [5]=> string(23) "headers_list: array ( )" [6]=> string(20) "current session_id: " [7]=> string(20) "current session_id: " [8]=> string(73) "$_SESSION after close: array ( 'before' => 'start', 'foo' => 'bar', )" [9]=> string(24) "session_id after close: " [10]=> string(75) "$_SESSION after destroy: array ( 'before' => 'start', 'foo' => 'bar', )" [11]=> string(22) "current session_id: ''" }
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
S Warning: session_start(): Cannot start session when headers already sent in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/qfFTd on line 63 Warning: session_start(): Cannot start session when headers already sent in /in/qfFTd on line 70 Warning: session_destroy(): Trying to destroy uninitialized session in /in/qfFTd on line 71 Warning: session_id(): Cannot change session id when headers already sent in /in/qfFTd on line 75 Warning: session_start(): Cannot start session when headers already sent in /in/qfFTd on line 76 array(12) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(18) "headers_sent: true" [5]=> string(23) "headers_list: array ( )" [6]=> string(20) "current session_id: " [7]=> string(20) "current session_id: " [8]=> string(73) "$_SESSION after close: array ( 'before' => 'start', 'foo' => 'bar', )" [9]=> string(24) "session_id after close: " [10]=> string(75) "$_SESSION after destroy: array ( 'before' => 'start', 'foo' => 'bar', )" [11]=> string(22) "current session_id: ''" }
Output for 7.1.0 - 7.1.33
S Warning: session_start(): Session callback expects true/false return value in /in/qfFTd on line 55 Warning: session_start(): Session callback expects true/false return value in /in/qfFTd on line 55 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/qfFTd on line 55
Process exited with code 255.
Output for 7.0.0 - 7.0.33
S Warning: session_start(): Session callback expects true/false return value in /in/qfFTd on line 55 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/qfFTd 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
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 8ea3447a99fc57e579df5c817b7ff80f" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 8ea3447a99fc57e579df5c817b7ff80f" [9]=> string(52) "current session_id: 8ea3447a99fc57e579df5c817b7ff80f" [10]=> string(54) "write 8ea3447a99fc57e579df5c817b7ff80f: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 8ea3447a99fc57e579df5c817b7ff80f" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 8ea3447a99fc57e579df5c817b7ff80f" [16]=> string(40) "destroy 8ea3447a99fc57e579df5c817b7ff80f" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.39
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read c75ed76433259c10341e89223045113b" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: c75ed76433259c10341e89223045113b" [9]=> string(52) "current session_id: c75ed76433259c10341e89223045113b" [10]=> string(54) "write c75ed76433259c10341e89223045113b: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: c75ed76433259c10341e89223045113b" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read c75ed76433259c10341e89223045113b" [16]=> string(40) "destroy c75ed76433259c10341e89223045113b" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.38
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read ff86965200efee556efe23a1dd07f731" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: ff86965200efee556efe23a1dd07f731" [9]=> string(52) "current session_id: ff86965200efee556efe23a1dd07f731" [10]=> string(54) "write ff86965200efee556efe23a1dd07f731: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: ff86965200efee556efe23a1dd07f731" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read ff86965200efee556efe23a1dd07f731" [16]=> string(40) "destroy ff86965200efee556efe23a1dd07f731" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.37
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 5fd3a23c723e784f324c209ed5fbdffe" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 5fd3a23c723e784f324c209ed5fbdffe" [9]=> string(52) "current session_id: 5fd3a23c723e784f324c209ed5fbdffe" [10]=> string(54) "write 5fd3a23c723e784f324c209ed5fbdffe: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 5fd3a23c723e784f324c209ed5fbdffe" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 5fd3a23c723e784f324c209ed5fbdffe" [16]=> string(40) "destroy 5fd3a23c723e784f324c209ed5fbdffe" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.36
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read b9b4bedc41d830b35f7893e943d9edeb" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: b9b4bedc41d830b35f7893e943d9edeb" [9]=> string(52) "current session_id: b9b4bedc41d830b35f7893e943d9edeb" [10]=> string(54) "write b9b4bedc41d830b35f7893e943d9edeb: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: b9b4bedc41d830b35f7893e943d9edeb" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read b9b4bedc41d830b35f7893e943d9edeb" [16]=> string(40) "destroy b9b4bedc41d830b35f7893e943d9edeb" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.35
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read a99eb0cfb9d2562365fe03d2fdf3eef4" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: a99eb0cfb9d2562365fe03d2fdf3eef4" [9]=> string(52) "current session_id: a99eb0cfb9d2562365fe03d2fdf3eef4" [10]=> string(54) "write a99eb0cfb9d2562365fe03d2fdf3eef4: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: a99eb0cfb9d2562365fe03d2fdf3eef4" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read a99eb0cfb9d2562365fe03d2fdf3eef4" [16]=> string(40) "destroy a99eb0cfb9d2562365fe03d2fdf3eef4" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.34
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 7c0d56c5b189e9f35fca8785ca8dc001" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 7c0d56c5b189e9f35fca8785ca8dc001" [9]=> string(52) "current session_id: 7c0d56c5b189e9f35fca8785ca8dc001" [10]=> string(54) "write 7c0d56c5b189e9f35fca8785ca8dc001: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 7c0d56c5b189e9f35fca8785ca8dc001" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 7c0d56c5b189e9f35fca8785ca8dc001" [16]=> string(40) "destroy 7c0d56c5b189e9f35fca8785ca8dc001" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.33
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read dfdd8555196b68b4ae9d259eb59e9eaa" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: dfdd8555196b68b4ae9d259eb59e9eaa" [9]=> string(52) "current session_id: dfdd8555196b68b4ae9d259eb59e9eaa" [10]=> string(54) "write dfdd8555196b68b4ae9d259eb59e9eaa: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: dfdd8555196b68b4ae9d259eb59e9eaa" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read dfdd8555196b68b4ae9d259eb59e9eaa" [16]=> string(40) "destroy dfdd8555196b68b4ae9d259eb59e9eaa" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.32
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 32ae7361fe2cede3cae0e25bebbf650a" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 32ae7361fe2cede3cae0e25bebbf650a" [9]=> string(52) "current session_id: 32ae7361fe2cede3cae0e25bebbf650a" [10]=> string(54) "write 32ae7361fe2cede3cae0e25bebbf650a: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 32ae7361fe2cede3cae0e25bebbf650a" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 32ae7361fe2cede3cae0e25bebbf650a" [16]=> string(40) "destroy 32ae7361fe2cede3cae0e25bebbf650a" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.31
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read affbb562b79039abd24dabd17e7eadab" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: affbb562b79039abd24dabd17e7eadab" [9]=> string(52) "current session_id: affbb562b79039abd24dabd17e7eadab" [10]=> string(54) "write affbb562b79039abd24dabd17e7eadab: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: affbb562b79039abd24dabd17e7eadab" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read affbb562b79039abd24dabd17e7eadab" [16]=> string(40) "destroy affbb562b79039abd24dabd17e7eadab" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.30
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 9d95ced982daf90eb8c944dec545fa5a" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 9d95ced982daf90eb8c944dec545fa5a" [9]=> string(52) "current session_id: 9d95ced982daf90eb8c944dec545fa5a" [10]=> string(54) "write 9d95ced982daf90eb8c944dec545fa5a: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 9d95ced982daf90eb8c944dec545fa5a" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 9d95ced982daf90eb8c944dec545fa5a" [16]=> string(40) "destroy 9d95ced982daf90eb8c944dec545fa5a" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.29
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(25) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 0877cd6dd2fe0647849d3b439be5e571" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 0877cd6dd2fe0647849d3b439be5e571" [9]=> string(52) "current session_id: 0877cd6dd2fe0647849d3b439be5e571" [10]=> string(54) "write 0877cd6dd2fe0647849d3b439be5e571: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 0877cd6dd2fe0647849d3b439be5e571" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 0877cd6dd2fe0647849d3b439be5e571" [16]=> string(40) "destroy 0877cd6dd2fe0647849d3b439be5e571" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(7) "gc 1440" [23]=> string(42) "write explicit-session-id: john|s:3:"doe";" [24]=> string(5) "close" }
Output for 5.6.28
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read b16364b09f766480bc3a8aaabf477582" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: b16364b09f766480bc3a8aaabf477582" [9]=> string(52) "current session_id: b16364b09f766480bc3a8aaabf477582" [10]=> string(54) "write b16364b09f766480bc3a8aaabf477582: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: b16364b09f766480bc3a8aaabf477582" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read b16364b09f766480bc3a8aaabf477582" [16]=> string(40) "destroy b16364b09f766480bc3a8aaabf477582" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.27
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 17effb88e59c83d74fe43c0958e28571" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 17effb88e59c83d74fe43c0958e28571" [9]=> string(52) "current session_id: 17effb88e59c83d74fe43c0958e28571" [10]=> string(54) "write 17effb88e59c83d74fe43c0958e28571: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 17effb88e59c83d74fe43c0958e28571" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 17effb88e59c83d74fe43c0958e28571" [16]=> string(40) "destroy 17effb88e59c83d74fe43c0958e28571" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.26
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 296ae45a74a102dacc5b60e4077584d4" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 296ae45a74a102dacc5b60e4077584d4" [9]=> string(52) "current session_id: 296ae45a74a102dacc5b60e4077584d4" [10]=> string(54) "write 296ae45a74a102dacc5b60e4077584d4: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 296ae45a74a102dacc5b60e4077584d4" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 296ae45a74a102dacc5b60e4077584d4" [16]=> string(40) "destroy 296ae45a74a102dacc5b60e4077584d4" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.25
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 4fdc83e706648f094c6d5cc7a1f3cae0" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 4fdc83e706648f094c6d5cc7a1f3cae0" [9]=> string(52) "current session_id: 4fdc83e706648f094c6d5cc7a1f3cae0" [10]=> string(54) "write 4fdc83e706648f094c6d5cc7a1f3cae0: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 4fdc83e706648f094c6d5cc7a1f3cae0" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 4fdc83e706648f094c6d5cc7a1f3cae0" [16]=> string(40) "destroy 4fdc83e706648f094c6d5cc7a1f3cae0" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.24
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 965f274b9271301f9de0053f83af34a8" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 965f274b9271301f9de0053f83af34a8" [9]=> string(52) "current session_id: 965f274b9271301f9de0053f83af34a8" [10]=> string(54) "write 965f274b9271301f9de0053f83af34a8: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 965f274b9271301f9de0053f83af34a8" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 965f274b9271301f9de0053f83af34a8" [16]=> string(40) "destroy 965f274b9271301f9de0053f83af34a8" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.23
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 933315322a7005fae6a45bef29635fcd" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 933315322a7005fae6a45bef29635fcd" [9]=> string(52) "current session_id: 933315322a7005fae6a45bef29635fcd" [10]=> string(54) "write 933315322a7005fae6a45bef29635fcd: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 933315322a7005fae6a45bef29635fcd" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 933315322a7005fae6a45bef29635fcd" [16]=> string(40) "destroy 933315322a7005fae6a45bef29635fcd" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.22
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 6d93fe2f37190bc3136e033a9207bb41" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 6d93fe2f37190bc3136e033a9207bb41" [9]=> string(52) "current session_id: 6d93fe2f37190bc3136e033a9207bb41" [10]=> string(54) "write 6d93fe2f37190bc3136e033a9207bb41: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 6d93fe2f37190bc3136e033a9207bb41" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 6d93fe2f37190bc3136e033a9207bb41" [16]=> string(40) "destroy 6d93fe2f37190bc3136e033a9207bb41" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.21
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read f28e0fb658adfc98bcce22678967d767" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: f28e0fb658adfc98bcce22678967d767" [9]=> string(52) "current session_id: f28e0fb658adfc98bcce22678967d767" [10]=> string(54) "write f28e0fb658adfc98bcce22678967d767: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: f28e0fb658adfc98bcce22678967d767" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read f28e0fb658adfc98bcce22678967d767" [16]=> string(40) "destroy f28e0fb658adfc98bcce22678967d767" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.20
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 27490ad53b89c7ea8875b7b053bd6761" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 27490ad53b89c7ea8875b7b053bd6761" [9]=> string(52) "current session_id: 27490ad53b89c7ea8875b7b053bd6761" [10]=> string(54) "write 27490ad53b89c7ea8875b7b053bd6761: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 27490ad53b89c7ea8875b7b053bd6761" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 27490ad53b89c7ea8875b7b053bd6761" [16]=> string(40) "destroy 27490ad53b89c7ea8875b7b053bd6761" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.19
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read fdc1b4fd18ec8701bebbb99010813374" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: fdc1b4fd18ec8701bebbb99010813374" [9]=> string(52) "current session_id: fdc1b4fd18ec8701bebbb99010813374" [10]=> string(54) "write fdc1b4fd18ec8701bebbb99010813374: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: fdc1b4fd18ec8701bebbb99010813374" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read fdc1b4fd18ec8701bebbb99010813374" [16]=> string(40) "destroy fdc1b4fd18ec8701bebbb99010813374" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.18
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read c3201691070aeb91b043336a98d57e63" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: c3201691070aeb91b043336a98d57e63" [9]=> string(52) "current session_id: c3201691070aeb91b043336a98d57e63" [10]=> string(54) "write c3201691070aeb91b043336a98d57e63: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: c3201691070aeb91b043336a98d57e63" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read c3201691070aeb91b043336a98d57e63" [16]=> string(40) "destroy c3201691070aeb91b043336a98d57e63" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.17
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 68e126d2bf381e717f860ea0ce9aa862" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 68e126d2bf381e717f860ea0ce9aa862" [9]=> string(52) "current session_id: 68e126d2bf381e717f860ea0ce9aa862" [10]=> string(54) "write 68e126d2bf381e717f860ea0ce9aa862: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 68e126d2bf381e717f860ea0ce9aa862" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 68e126d2bf381e717f860ea0ce9aa862" [16]=> string(40) "destroy 68e126d2bf381e717f860ea0ce9aa862" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.16
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 4b39ea882ce870fed22775dc4cf910c8" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 4b39ea882ce870fed22775dc4cf910c8" [9]=> string(52) "current session_id: 4b39ea882ce870fed22775dc4cf910c8" [10]=> string(54) "write 4b39ea882ce870fed22775dc4cf910c8: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 4b39ea882ce870fed22775dc4cf910c8" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 4b39ea882ce870fed22775dc4cf910c8" [16]=> string(40) "destroy 4b39ea882ce870fed22775dc4cf910c8" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.15
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 6d420d20ca737c2249c34c131397cd7c" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 6d420d20ca737c2249c34c131397cd7c" [9]=> string(52) "current session_id: 6d420d20ca737c2249c34c131397cd7c" [10]=> string(54) "write 6d420d20ca737c2249c34c131397cd7c: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 6d420d20ca737c2249c34c131397cd7c" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 6d420d20ca737c2249c34c131397cd7c" [16]=> string(40) "destroy 6d420d20ca737c2249c34c131397cd7c" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.14
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 68e05f7e6ec179580ff221c8b68fd02b" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 68e05f7e6ec179580ff221c8b68fd02b" [9]=> string(52) "current session_id: 68e05f7e6ec179580ff221c8b68fd02b" [10]=> string(54) "write 68e05f7e6ec179580ff221c8b68fd02b: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 68e05f7e6ec179580ff221c8b68fd02b" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 68e05f7e6ec179580ff221c8b68fd02b" [16]=> string(40) "destroy 68e05f7e6ec179580ff221c8b68fd02b" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.13
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(25) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 43d810473e02e2f77f7d658807de888b" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 43d810473e02e2f77f7d658807de888b" [9]=> string(52) "current session_id: 43d810473e02e2f77f7d658807de888b" [10]=> string(54) "write 43d810473e02e2f77f7d658807de888b: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 43d810473e02e2f77f7d658807de888b" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 43d810473e02e2f77f7d658807de888b" [16]=> string(40) "destroy 43d810473e02e2f77f7d658807de888b" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(7) "gc 1440" [23]=> string(42) "write explicit-session-id: john|s:3:"doe";" [24]=> string(5) "close" }
Output for 5.6.12
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read f28a5f35e497812b7f455ed19940f2fb" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: f28a5f35e497812b7f455ed19940f2fb" [9]=> string(52) "current session_id: f28a5f35e497812b7f455ed19940f2fb" [10]=> string(54) "write f28a5f35e497812b7f455ed19940f2fb: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: f28a5f35e497812b7f455ed19940f2fb" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read f28a5f35e497812b7f455ed19940f2fb" [16]=> string(40) "destroy f28a5f35e497812b7f455ed19940f2fb" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.11
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 128437784bf802776fd8dd47c5daf673" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 128437784bf802776fd8dd47c5daf673" [9]=> string(52) "current session_id: 128437784bf802776fd8dd47c5daf673" [10]=> string(54) "write 128437784bf802776fd8dd47c5daf673: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 128437784bf802776fd8dd47c5daf673" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 128437784bf802776fd8dd47c5daf673" [16]=> string(40) "destroy 128437784bf802776fd8dd47c5daf673" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.10
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 8be75ce7f847a4b84bc37203975ca45e" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 8be75ce7f847a4b84bc37203975ca45e" [9]=> string(52) "current session_id: 8be75ce7f847a4b84bc37203975ca45e" [10]=> string(54) "write 8be75ce7f847a4b84bc37203975ca45e: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 8be75ce7f847a4b84bc37203975ca45e" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 8be75ce7f847a4b84bc37203975ca45e" [16]=> string(40) "destroy 8be75ce7f847a4b84bc37203975ca45e" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.9
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 3dedc52826dfa42e7ad20925f58a98f1" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 3dedc52826dfa42e7ad20925f58a98f1" [9]=> string(52) "current session_id: 3dedc52826dfa42e7ad20925f58a98f1" [10]=> string(54) "write 3dedc52826dfa42e7ad20925f58a98f1: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 3dedc52826dfa42e7ad20925f58a98f1" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 3dedc52826dfa42e7ad20925f58a98f1" [16]=> string(40) "destroy 3dedc52826dfa42e7ad20925f58a98f1" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.8
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 366387945e314578b4963f6ee0c2c568" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 366387945e314578b4963f6ee0c2c568" [9]=> string(52) "current session_id: 366387945e314578b4963f6ee0c2c568" [10]=> string(54) "write 366387945e314578b4963f6ee0c2c568: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 366387945e314578b4963f6ee0c2c568" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 366387945e314578b4963f6ee0c2c568" [16]=> string(40) "destroy 366387945e314578b4963f6ee0c2c568" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.7
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read dc6f0e535f7089d32c8dca31f4c1cb9d" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: dc6f0e535f7089d32c8dca31f4c1cb9d" [9]=> string(52) "current session_id: dc6f0e535f7089d32c8dca31f4c1cb9d" [10]=> string(54) "write dc6f0e535f7089d32c8dca31f4c1cb9d: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: dc6f0e535f7089d32c8dca31f4c1cb9d" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read dc6f0e535f7089d32c8dca31f4c1cb9d" [16]=> string(40) "destroy dc6f0e535f7089d32c8dca31f4c1cb9d" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.6
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read e02e358e3b668663115f0827321c1e03" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: e02e358e3b668663115f0827321c1e03" [9]=> string(52) "current session_id: e02e358e3b668663115f0827321c1e03" [10]=> string(54) "write e02e358e3b668663115f0827321c1e03: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: e02e358e3b668663115f0827321c1e03" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read e02e358e3b668663115f0827321c1e03" [16]=> string(40) "destroy e02e358e3b668663115f0827321c1e03" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.5
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 168029d52a3ed2da8f317e666c43a2d5" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 168029d52a3ed2da8f317e666c43a2d5" [9]=> string(52) "current session_id: 168029d52a3ed2da8f317e666c43a2d5" [10]=> string(54) "write 168029d52a3ed2da8f317e666c43a2d5: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 168029d52a3ed2da8f317e666c43a2d5" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 168029d52a3ed2da8f317e666c43a2d5" [16]=> string(40) "destroy 168029d52a3ed2da8f317e666c43a2d5" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.4
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 6365449fd0161ecd7cb8490c4e5ccaaa" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 6365449fd0161ecd7cb8490c4e5ccaaa" [9]=> string(52) "current session_id: 6365449fd0161ecd7cb8490c4e5ccaaa" [10]=> string(54) "write 6365449fd0161ecd7cb8490c4e5ccaaa: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 6365449fd0161ecd7cb8490c4e5ccaaa" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 6365449fd0161ecd7cb8490c4e5ccaaa" [16]=> string(40) "destroy 6365449fd0161ecd7cb8490c4e5ccaaa" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.3
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read aa7b0d88b4cc30b9d123794beffbcbe7" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: aa7b0d88b4cc30b9d123794beffbcbe7" [9]=> string(52) "current session_id: aa7b0d88b4cc30b9d123794beffbcbe7" [10]=> string(54) "write aa7b0d88b4cc30b9d123794beffbcbe7: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: aa7b0d88b4cc30b9d123794beffbcbe7" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read aa7b0d88b4cc30b9d123794beffbcbe7" [16]=> string(40) "destroy aa7b0d88b4cc30b9d123794beffbcbe7" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.2
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read a1a2af940b009e8264c28ff93fbf471f" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: a1a2af940b009e8264c28ff93fbf471f" [9]=> string(52) "current session_id: a1a2af940b009e8264c28ff93fbf471f" [10]=> string(54) "write a1a2af940b009e8264c28ff93fbf471f: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: a1a2af940b009e8264c28ff93fbf471f" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read a1a2af940b009e8264c28ff93fbf471f" [16]=> string(40) "destroy a1a2af940b009e8264c28ff93fbf471f" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.1
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 87d5dda6fb270ebe3206ed822fe11c6e" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 87d5dda6fb270ebe3206ed822fe11c6e" [9]=> string(52) "current session_id: 87d5dda6fb270ebe3206ed822fe11c6e" [10]=> string(54) "write 87d5dda6fb270ebe3206ed822fe11c6e: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 87d5dda6fb270ebe3206ed822fe11c6e" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 87d5dda6fb270ebe3206ed822fe11c6e" [16]=> string(40) "destroy 87d5dda6fb270ebe3206ed822fe11c6e" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.6.0
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read ec59ccd42bd3e551e4b9df5d81728ab7" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: ec59ccd42bd3e551e4b9df5d81728ab7" [9]=> string(52) "current session_id: ec59ccd42bd3e551e4b9df5d81728ab7" [10]=> string(54) "write ec59ccd42bd3e551e4b9df5d81728ab7: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: ec59ccd42bd3e551e4b9df5d81728ab7" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read ec59ccd42bd3e551e4b9df5d81728ab7" [16]=> string(40) "destroy ec59ccd42bd3e551e4b9df5d81728ab7" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.38
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 8a7ea19f5d55036f9d02c04c3e4175bb" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 8a7ea19f5d55036f9d02c04c3e4175bb" [9]=> string(52) "current session_id: 8a7ea19f5d55036f9d02c04c3e4175bb" [10]=> string(54) "write 8a7ea19f5d55036f9d02c04c3e4175bb: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 8a7ea19f5d55036f9d02c04c3e4175bb" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 8a7ea19f5d55036f9d02c04c3e4175bb" [16]=> string(40) "destroy 8a7ea19f5d55036f9d02c04c3e4175bb" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.37
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 035926f40cd38b771f1d3036eab6c908" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 035926f40cd38b771f1d3036eab6c908" [9]=> string(52) "current session_id: 035926f40cd38b771f1d3036eab6c908" [10]=> string(54) "write 035926f40cd38b771f1d3036eab6c908: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 035926f40cd38b771f1d3036eab6c908" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 035926f40cd38b771f1d3036eab6c908" [16]=> string(40) "destroy 035926f40cd38b771f1d3036eab6c908" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.36
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 5421972f9b88628c7152616180785824" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 5421972f9b88628c7152616180785824" [9]=> string(52) "current session_id: 5421972f9b88628c7152616180785824" [10]=> string(54) "write 5421972f9b88628c7152616180785824: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 5421972f9b88628c7152616180785824" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 5421972f9b88628c7152616180785824" [16]=> string(40) "destroy 5421972f9b88628c7152616180785824" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.35
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 5760aca2cb0a8af07c947b5e1adf73d4" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 5760aca2cb0a8af07c947b5e1adf73d4" [9]=> string(52) "current session_id: 5760aca2cb0a8af07c947b5e1adf73d4" [10]=> string(54) "write 5760aca2cb0a8af07c947b5e1adf73d4: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 5760aca2cb0a8af07c947b5e1adf73d4" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 5760aca2cb0a8af07c947b5e1adf73d4" [16]=> string(40) "destroy 5760aca2cb0a8af07c947b5e1adf73d4" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.34
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 4371fdec913c7fd953eff7a0f791ea7a" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 4371fdec913c7fd953eff7a0f791ea7a" [9]=> string(52) "current session_id: 4371fdec913c7fd953eff7a0f791ea7a" [10]=> string(54) "write 4371fdec913c7fd953eff7a0f791ea7a: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 4371fdec913c7fd953eff7a0f791ea7a" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 4371fdec913c7fd953eff7a0f791ea7a" [16]=> string(40) "destroy 4371fdec913c7fd953eff7a0f791ea7a" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.33
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 8763dbbbb5fab60765b7d9afdf2abee2" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 8763dbbbb5fab60765b7d9afdf2abee2" [9]=> string(52) "current session_id: 8763dbbbb5fab60765b7d9afdf2abee2" [10]=> string(54) "write 8763dbbbb5fab60765b7d9afdf2abee2: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 8763dbbbb5fab60765b7d9afdf2abee2" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 8763dbbbb5fab60765b7d9afdf2abee2" [16]=> string(40) "destroy 8763dbbbb5fab60765b7d9afdf2abee2" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.32
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 049be8bee333149bdd50fa59ef62d3cc" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 049be8bee333149bdd50fa59ef62d3cc" [9]=> string(52) "current session_id: 049be8bee333149bdd50fa59ef62d3cc" [10]=> string(54) "write 049be8bee333149bdd50fa59ef62d3cc: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 049be8bee333149bdd50fa59ef62d3cc" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 049be8bee333149bdd50fa59ef62d3cc" [16]=> string(40) "destroy 049be8bee333149bdd50fa59ef62d3cc" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.31
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read db09c4395d4ed2e97e3c948134e13422" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: db09c4395d4ed2e97e3c948134e13422" [9]=> string(52) "current session_id: db09c4395d4ed2e97e3c948134e13422" [10]=> string(54) "write db09c4395d4ed2e97e3c948134e13422: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: db09c4395d4ed2e97e3c948134e13422" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read db09c4395d4ed2e97e3c948134e13422" [16]=> string(40) "destroy db09c4395d4ed2e97e3c948134e13422" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.30
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read c961b123cffc23c3cc181a5187b7870a" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: c961b123cffc23c3cc181a5187b7870a" [9]=> string(52) "current session_id: c961b123cffc23c3cc181a5187b7870a" [10]=> string(54) "write c961b123cffc23c3cc181a5187b7870a: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: c961b123cffc23c3cc181a5187b7870a" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read c961b123cffc23c3cc181a5187b7870a" [16]=> string(40) "destroy c961b123cffc23c3cc181a5187b7870a" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.29
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 5198369a427d60fc57f6ec3f572f244a" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 5198369a427d60fc57f6ec3f572f244a" [9]=> string(52) "current session_id: 5198369a427d60fc57f6ec3f572f244a" [10]=> string(54) "write 5198369a427d60fc57f6ec3f572f244a: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 5198369a427d60fc57f6ec3f572f244a" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 5198369a427d60fc57f6ec3f572f244a" [16]=> string(40) "destroy 5198369a427d60fc57f6ec3f572f244a" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.28
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 195a786cc8bf79a653a444f9043bd307" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 195a786cc8bf79a653a444f9043bd307" [9]=> string(52) "current session_id: 195a786cc8bf79a653a444f9043bd307" [10]=> string(54) "write 195a786cc8bf79a653a444f9043bd307: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 195a786cc8bf79a653a444f9043bd307" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 195a786cc8bf79a653a444f9043bd307" [16]=> string(40) "destroy 195a786cc8bf79a653a444f9043bd307" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.27
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 1ee44b45a71e9d17509a53fcc618ccec" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 1ee44b45a71e9d17509a53fcc618ccec" [9]=> string(52) "current session_id: 1ee44b45a71e9d17509a53fcc618ccec" [10]=> string(54) "write 1ee44b45a71e9d17509a53fcc618ccec: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 1ee44b45a71e9d17509a53fcc618ccec" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 1ee44b45a71e9d17509a53fcc618ccec" [16]=> string(40) "destroy 1ee44b45a71e9d17509a53fcc618ccec" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.26
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 59a3db01e5e1c3fca4a7b94b855b4c5d" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 59a3db01e5e1c3fca4a7b94b855b4c5d" [9]=> string(52) "current session_id: 59a3db01e5e1c3fca4a7b94b855b4c5d" [10]=> string(54) "write 59a3db01e5e1c3fca4a7b94b855b4c5d: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 59a3db01e5e1c3fca4a7b94b855b4c5d" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 59a3db01e5e1c3fca4a7b94b855b4c5d" [16]=> string(40) "destroy 59a3db01e5e1c3fca4a7b94b855b4c5d" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.25
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read da64238ee3a1e70e95dff37d2b8c08dc" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: da64238ee3a1e70e95dff37d2b8c08dc" [9]=> string(52) "current session_id: da64238ee3a1e70e95dff37d2b8c08dc" [10]=> string(54) "write da64238ee3a1e70e95dff37d2b8c08dc: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: da64238ee3a1e70e95dff37d2b8c08dc" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read da64238ee3a1e70e95dff37d2b8c08dc" [16]=> string(40) "destroy da64238ee3a1e70e95dff37d2b8c08dc" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.24
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read d71c0c11158883240ef697489ea1ff78" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: d71c0c11158883240ef697489ea1ff78" [9]=> string(52) "current session_id: d71c0c11158883240ef697489ea1ff78" [10]=> string(54) "write d71c0c11158883240ef697489ea1ff78: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: d71c0c11158883240ef697489ea1ff78" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read d71c0c11158883240ef697489ea1ff78" [16]=> string(40) "destroy d71c0c11158883240ef697489ea1ff78" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.23
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 8f2b677885f8f78776ce4dcd7bfab888" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 8f2b677885f8f78776ce4dcd7bfab888" [9]=> string(52) "current session_id: 8f2b677885f8f78776ce4dcd7bfab888" [10]=> string(54) "write 8f2b677885f8f78776ce4dcd7bfab888: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 8f2b677885f8f78776ce4dcd7bfab888" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 8f2b677885f8f78776ce4dcd7bfab888" [16]=> string(40) "destroy 8f2b677885f8f78776ce4dcd7bfab888" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.22
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 6bd91a2d3f9a42f5c1248dd42bfc6348" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 6bd91a2d3f9a42f5c1248dd42bfc6348" [9]=> string(52) "current session_id: 6bd91a2d3f9a42f5c1248dd42bfc6348" [10]=> string(54) "write 6bd91a2d3f9a42f5c1248dd42bfc6348: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 6bd91a2d3f9a42f5c1248dd42bfc6348" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 6bd91a2d3f9a42f5c1248dd42bfc6348" [16]=> string(40) "destroy 6bd91a2d3f9a42f5c1248dd42bfc6348" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.21
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 71b1d49801fdb6554013b6303af9e58f" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 71b1d49801fdb6554013b6303af9e58f" [9]=> string(52) "current session_id: 71b1d49801fdb6554013b6303af9e58f" [10]=> string(54) "write 71b1d49801fdb6554013b6303af9e58f: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 71b1d49801fdb6554013b6303af9e58f" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 71b1d49801fdb6554013b6303af9e58f" [16]=> string(40) "destroy 71b1d49801fdb6554013b6303af9e58f" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.20
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(25) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 1e58b8f1f8c5be8616a440e0bd0d5332" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 1e58b8f1f8c5be8616a440e0bd0d5332" [9]=> string(52) "current session_id: 1e58b8f1f8c5be8616a440e0bd0d5332" [10]=> string(54) "write 1e58b8f1f8c5be8616a440e0bd0d5332: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 1e58b8f1f8c5be8616a440e0bd0d5332" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 1e58b8f1f8c5be8616a440e0bd0d5332" [16]=> string(40) "destroy 1e58b8f1f8c5be8616a440e0bd0d5332" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(7) "gc 1440" [23]=> string(42) "write explicit-session-id: john|s:3:"doe";" [24]=> string(5) "close" }
Output for 5.5.19
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read ae57295671be8da14dc69332916f3d37" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: ae57295671be8da14dc69332916f3d37" [9]=> string(52) "current session_id: ae57295671be8da14dc69332916f3d37" [10]=> string(54) "write ae57295671be8da14dc69332916f3d37: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: ae57295671be8da14dc69332916f3d37" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read ae57295671be8da14dc69332916f3d37" [16]=> string(40) "destroy ae57295671be8da14dc69332916f3d37" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.18
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read ab015bf59367315484d76e7fd9d7649f" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: ab015bf59367315484d76e7fd9d7649f" [9]=> string(52) "current session_id: ab015bf59367315484d76e7fd9d7649f" [10]=> string(54) "write ab015bf59367315484d76e7fd9d7649f: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: ab015bf59367315484d76e7fd9d7649f" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read ab015bf59367315484d76e7fd9d7649f" [16]=> string(40) "destroy ab015bf59367315484d76e7fd9d7649f" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.17
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 94c301334d74ce7060aa10a6af4873f8" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 94c301334d74ce7060aa10a6af4873f8" [9]=> string(52) "current session_id: 94c301334d74ce7060aa10a6af4873f8" [10]=> string(54) "write 94c301334d74ce7060aa10a6af4873f8: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 94c301334d74ce7060aa10a6af4873f8" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 94c301334d74ce7060aa10a6af4873f8" [16]=> string(40) "destroy 94c301334d74ce7060aa10a6af4873f8" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.16
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read a36c651b9a2775731d20460542384187" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: a36c651b9a2775731d20460542384187" [9]=> string(52) "current session_id: a36c651b9a2775731d20460542384187" [10]=> string(54) "write a36c651b9a2775731d20460542384187: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: a36c651b9a2775731d20460542384187" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read a36c651b9a2775731d20460542384187" [16]=> string(40) "destroy a36c651b9a2775731d20460542384187" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.15
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read ca9807cb7f97d6ed2a001e12f24014a5" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: ca9807cb7f97d6ed2a001e12f24014a5" [9]=> string(52) "current session_id: ca9807cb7f97d6ed2a001e12f24014a5" [10]=> string(54) "write ca9807cb7f97d6ed2a001e12f24014a5: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: ca9807cb7f97d6ed2a001e12f24014a5" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read ca9807cb7f97d6ed2a001e12f24014a5" [16]=> string(40) "destroy ca9807cb7f97d6ed2a001e12f24014a5" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.14
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read f7dabe411a2f86a2f2015f4c80be1748" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: f7dabe411a2f86a2f2015f4c80be1748" [9]=> string(52) "current session_id: f7dabe411a2f86a2f2015f4c80be1748" [10]=> string(54) "write f7dabe411a2f86a2f2015f4c80be1748: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: f7dabe411a2f86a2f2015f4c80be1748" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read f7dabe411a2f86a2f2015f4c80be1748" [16]=> string(40) "destroy f7dabe411a2f86a2f2015f4c80be1748" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.13
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read e9ee4fbf9e4360266547226e9d6b4073" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: e9ee4fbf9e4360266547226e9d6b4073" [9]=> string(52) "current session_id: e9ee4fbf9e4360266547226e9d6b4073" [10]=> string(54) "write e9ee4fbf9e4360266547226e9d6b4073: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: e9ee4fbf9e4360266547226e9d6b4073" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read e9ee4fbf9e4360266547226e9d6b4073" [16]=> string(40) "destroy e9ee4fbf9e4360266547226e9d6b4073" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.12
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 2123b03d346e6ce0cbabfa368edf7895" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 2123b03d346e6ce0cbabfa368edf7895" [9]=> string(52) "current session_id: 2123b03d346e6ce0cbabfa368edf7895" [10]=> string(54) "write 2123b03d346e6ce0cbabfa368edf7895: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 2123b03d346e6ce0cbabfa368edf7895" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 2123b03d346e6ce0cbabfa368edf7895" [16]=> string(40) "destroy 2123b03d346e6ce0cbabfa368edf7895" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.11
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 49723d2a6357d3202354156b9288d316" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 49723d2a6357d3202354156b9288d316" [9]=> string(52) "current session_id: 49723d2a6357d3202354156b9288d316" [10]=> string(54) "write 49723d2a6357d3202354156b9288d316: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 49723d2a6357d3202354156b9288d316" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 49723d2a6357d3202354156b9288d316" [16]=> string(40) "destroy 49723d2a6357d3202354156b9288d316" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.10
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 830bb303ff4dcf2e166949bf710bfd99" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 830bb303ff4dcf2e166949bf710bfd99" [9]=> string(52) "current session_id: 830bb303ff4dcf2e166949bf710bfd99" [10]=> string(54) "write 830bb303ff4dcf2e166949bf710bfd99: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 830bb303ff4dcf2e166949bf710bfd99" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 830bb303ff4dcf2e166949bf710bfd99" [16]=> string(40) "destroy 830bb303ff4dcf2e166949bf710bfd99" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.9
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read d4f358af3d450235b3611f43af7036c1" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: d4f358af3d450235b3611f43af7036c1" [9]=> string(52) "current session_id: d4f358af3d450235b3611f43af7036c1" [10]=> string(54) "write d4f358af3d450235b3611f43af7036c1: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: d4f358af3d450235b3611f43af7036c1" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read d4f358af3d450235b3611f43af7036c1" [16]=> string(40) "destroy d4f358af3d450235b3611f43af7036c1" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.8
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 199c7cd7824476c12dc58b8a45a77a91" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 199c7cd7824476c12dc58b8a45a77a91" [9]=> string(52) "current session_id: 199c7cd7824476c12dc58b8a45a77a91" [10]=> string(54) "write 199c7cd7824476c12dc58b8a45a77a91: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 199c7cd7824476c12dc58b8a45a77a91" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 199c7cd7824476c12dc58b8a45a77a91" [16]=> string(40) "destroy 199c7cd7824476c12dc58b8a45a77a91" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.7
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read be159aacb9ce82f982a305349febc4fd" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: be159aacb9ce82f982a305349febc4fd" [9]=> string(52) "current session_id: be159aacb9ce82f982a305349febc4fd" [10]=> string(54) "write be159aacb9ce82f982a305349febc4fd: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: be159aacb9ce82f982a305349febc4fd" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read be159aacb9ce82f982a305349febc4fd" [16]=> string(40) "destroy be159aacb9ce82f982a305349febc4fd" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.6
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 1c2b71c26976d9adfee5846f0549dc89" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 1c2b71c26976d9adfee5846f0549dc89" [9]=> string(52) "current session_id: 1c2b71c26976d9adfee5846f0549dc89" [10]=> string(54) "write 1c2b71c26976d9adfee5846f0549dc89: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 1c2b71c26976d9adfee5846f0549dc89" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 1c2b71c26976d9adfee5846f0549dc89" [16]=> string(40) "destroy 1c2b71c26976d9adfee5846f0549dc89" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.5
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 8ca183f42aaecb375c276cebde6a7a6c" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 8ca183f42aaecb375c276cebde6a7a6c" [9]=> string(52) "current session_id: 8ca183f42aaecb375c276cebde6a7a6c" [10]=> string(54) "write 8ca183f42aaecb375c276cebde6a7a6c: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 8ca183f42aaecb375c276cebde6a7a6c" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 8ca183f42aaecb375c276cebde6a7a6c" [16]=> string(40) "destroy 8ca183f42aaecb375c276cebde6a7a6c" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.4
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 9f93d39dd77a87cf12559538030720a2" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 9f93d39dd77a87cf12559538030720a2" [9]=> string(52) "current session_id: 9f93d39dd77a87cf12559538030720a2" [10]=> string(54) "write 9f93d39dd77a87cf12559538030720a2: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 9f93d39dd77a87cf12559538030720a2" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 9f93d39dd77a87cf12559538030720a2" [16]=> string(40) "destroy 9f93d39dd77a87cf12559538030720a2" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.3
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 46b8de079c5ad0504471bf255c7fed7d" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 46b8de079c5ad0504471bf255c7fed7d" [9]=> string(52) "current session_id: 46b8de079c5ad0504471bf255c7fed7d" [10]=> string(54) "write 46b8de079c5ad0504471bf255c7fed7d: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 46b8de079c5ad0504471bf255c7fed7d" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 46b8de079c5ad0504471bf255c7fed7d" [16]=> string(40) "destroy 46b8de079c5ad0504471bf255c7fed7d" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.2
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read ddbb470adff1240dc5919131a0f70afa" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: ddbb470adff1240dc5919131a0f70afa" [9]=> string(52) "current session_id: ddbb470adff1240dc5919131a0f70afa" [10]=> string(54) "write ddbb470adff1240dc5919131a0f70afa: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: ddbb470adff1240dc5919131a0f70afa" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read ddbb470adff1240dc5919131a0f70afa" [16]=> string(40) "destroy ddbb470adff1240dc5919131a0f70afa" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.1
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read dc22a53f8b041cc40db3737bf9d6179d" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: dc22a53f8b041cc40db3737bf9d6179d" [9]=> string(52) "current session_id: dc22a53f8b041cc40db3737bf9d6179d" [10]=> string(54) "write dc22a53f8b041cc40db3737bf9d6179d: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: dc22a53f8b041cc40db3737bf9d6179d" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read dc22a53f8b041cc40db3737bf9d6179d" [16]=> string(40) "destroy dc22a53f8b041cc40db3737bf9d6179d" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.5.0
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read fa09544cbaacb3c4bce2d50a5fb0b71a" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: fa09544cbaacb3c4bce2d50a5fb0b71a" [9]=> string(52) "current session_id: fa09544cbaacb3c4bce2d50a5fb0b71a" [10]=> string(54) "write fa09544cbaacb3c4bce2d50a5fb0b71a: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: fa09544cbaacb3c4bce2d50a5fb0b71a" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read fa09544cbaacb3c4bce2d50a5fb0b71a" [16]=> string(40) "destroy fa09544cbaacb3c4bce2d50a5fb0b71a" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.45
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 9372aa8099a2983e2ba776e177182adc" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 9372aa8099a2983e2ba776e177182adc" [9]=> string(52) "current session_id: 9372aa8099a2983e2ba776e177182adc" [10]=> string(54) "write 9372aa8099a2983e2ba776e177182adc: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 9372aa8099a2983e2ba776e177182adc" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 9372aa8099a2983e2ba776e177182adc" [16]=> string(40) "destroy 9372aa8099a2983e2ba776e177182adc" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.44
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 0846b1e9efdb6cd2aa8a0a5fcbbe9ae5" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 0846b1e9efdb6cd2aa8a0a5fcbbe9ae5" [9]=> string(52) "current session_id: 0846b1e9efdb6cd2aa8a0a5fcbbe9ae5" [10]=> string(54) "write 0846b1e9efdb6cd2aa8a0a5fcbbe9ae5: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 0846b1e9efdb6cd2aa8a0a5fcbbe9ae5" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 0846b1e9efdb6cd2aa8a0a5fcbbe9ae5" [16]=> string(40) "destroy 0846b1e9efdb6cd2aa8a0a5fcbbe9ae5" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.43
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 35f81a7f751c7e96e23f9253153f6e29" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 35f81a7f751c7e96e23f9253153f6e29" [9]=> string(52) "current session_id: 35f81a7f751c7e96e23f9253153f6e29" [10]=> string(54) "write 35f81a7f751c7e96e23f9253153f6e29: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 35f81a7f751c7e96e23f9253153f6e29" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 35f81a7f751c7e96e23f9253153f6e29" [16]=> string(40) "destroy 35f81a7f751c7e96e23f9253153f6e29" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.42
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 0e6ca292c64121581bdd7a930a49bb43" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 0e6ca292c64121581bdd7a930a49bb43" [9]=> string(52) "current session_id: 0e6ca292c64121581bdd7a930a49bb43" [10]=> string(54) "write 0e6ca292c64121581bdd7a930a49bb43: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 0e6ca292c64121581bdd7a930a49bb43" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 0e6ca292c64121581bdd7a930a49bb43" [16]=> string(40) "destroy 0e6ca292c64121581bdd7a930a49bb43" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.41
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read cf76cdee30fbc6c6d34d2c46a22e5de4" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: cf76cdee30fbc6c6d34d2c46a22e5de4" [9]=> string(52) "current session_id: cf76cdee30fbc6c6d34d2c46a22e5de4" [10]=> string(54) "write cf76cdee30fbc6c6d34d2c46a22e5de4: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: cf76cdee30fbc6c6d34d2c46a22e5de4" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read cf76cdee30fbc6c6d34d2c46a22e5de4" [16]=> string(40) "destroy cf76cdee30fbc6c6d34d2c46a22e5de4" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.40
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 1b5aebad43ec5e5c8634fcff3982fac6" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 1b5aebad43ec5e5c8634fcff3982fac6" [9]=> string(52) "current session_id: 1b5aebad43ec5e5c8634fcff3982fac6" [10]=> string(54) "write 1b5aebad43ec5e5c8634fcff3982fac6: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 1b5aebad43ec5e5c8634fcff3982fac6" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 1b5aebad43ec5e5c8634fcff3982fac6" [16]=> string(40) "destroy 1b5aebad43ec5e5c8634fcff3982fac6" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.39
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 7a8735631d12273f14ee24646039340b" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 7a8735631d12273f14ee24646039340b" [9]=> string(52) "current session_id: 7a8735631d12273f14ee24646039340b" [10]=> string(54) "write 7a8735631d12273f14ee24646039340b: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 7a8735631d12273f14ee24646039340b" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 7a8735631d12273f14ee24646039340b" [16]=> string(40) "destroy 7a8735631d12273f14ee24646039340b" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.38
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 3580063201f45cf7389789451bd8d71c" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 3580063201f45cf7389789451bd8d71c" [9]=> string(52) "current session_id: 3580063201f45cf7389789451bd8d71c" [10]=> string(54) "write 3580063201f45cf7389789451bd8d71c: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 3580063201f45cf7389789451bd8d71c" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 3580063201f45cf7389789451bd8d71c" [16]=> string(40) "destroy 3580063201f45cf7389789451bd8d71c" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.37
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 6d6f102ab144a5945dd1d40d22f70b5b" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 6d6f102ab144a5945dd1d40d22f70b5b" [9]=> string(52) "current session_id: 6d6f102ab144a5945dd1d40d22f70b5b" [10]=> string(54) "write 6d6f102ab144a5945dd1d40d22f70b5b: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 6d6f102ab144a5945dd1d40d22f70b5b" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 6d6f102ab144a5945dd1d40d22f70b5b" [16]=> string(40) "destroy 6d6f102ab144a5945dd1d40d22f70b5b" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.36
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read d29d8bde3dd26551c672aff0cdf7b469" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: d29d8bde3dd26551c672aff0cdf7b469" [9]=> string(52) "current session_id: d29d8bde3dd26551c672aff0cdf7b469" [10]=> string(54) "write d29d8bde3dd26551c672aff0cdf7b469: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: d29d8bde3dd26551c672aff0cdf7b469" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read d29d8bde3dd26551c672aff0cdf7b469" [16]=> string(40) "destroy d29d8bde3dd26551c672aff0cdf7b469" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.35
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 967a38e8668564db2eee482a91d40d0a" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 967a38e8668564db2eee482a91d40d0a" [9]=> string(52) "current session_id: 967a38e8668564db2eee482a91d40d0a" [10]=> string(54) "write 967a38e8668564db2eee482a91d40d0a: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 967a38e8668564db2eee482a91d40d0a" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 967a38e8668564db2eee482a91d40d0a" [16]=> string(40) "destroy 967a38e8668564db2eee482a91d40d0a" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.34
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 5d4aae3b5536f36a4885c57b1c34d7a1" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 5d4aae3b5536f36a4885c57b1c34d7a1" [9]=> string(52) "current session_id: 5d4aae3b5536f36a4885c57b1c34d7a1" [10]=> string(54) "write 5d4aae3b5536f36a4885c57b1c34d7a1: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 5d4aae3b5536f36a4885c57b1c34d7a1" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 5d4aae3b5536f36a4885c57b1c34d7a1" [16]=> string(40) "destroy 5d4aae3b5536f36a4885c57b1c34d7a1" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.33
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 609496ff1fa5c2e433b3b5c257f04f92" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 609496ff1fa5c2e433b3b5c257f04f92" [9]=> string(52) "current session_id: 609496ff1fa5c2e433b3b5c257f04f92" [10]=> string(54) "write 609496ff1fa5c2e433b3b5c257f04f92: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 609496ff1fa5c2e433b3b5c257f04f92" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 609496ff1fa5c2e433b3b5c257f04f92" [16]=> string(40) "destroy 609496ff1fa5c2e433b3b5c257f04f92" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.32
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read fd5fcdd6a3fd69e42ac9cbdeeec7ed98" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: fd5fcdd6a3fd69e42ac9cbdeeec7ed98" [9]=> string(52) "current session_id: fd5fcdd6a3fd69e42ac9cbdeeec7ed98" [10]=> string(54) "write fd5fcdd6a3fd69e42ac9cbdeeec7ed98: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: fd5fcdd6a3fd69e42ac9cbdeeec7ed98" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read fd5fcdd6a3fd69e42ac9cbdeeec7ed98" [16]=> string(40) "destroy fd5fcdd6a3fd69e42ac9cbdeeec7ed98" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.31
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 19cce115d30ebcb747b4bb298a15e0ad" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 19cce115d30ebcb747b4bb298a15e0ad" [9]=> string(52) "current session_id: 19cce115d30ebcb747b4bb298a15e0ad" [10]=> string(54) "write 19cce115d30ebcb747b4bb298a15e0ad: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 19cce115d30ebcb747b4bb298a15e0ad" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 19cce115d30ebcb747b4bb298a15e0ad" [16]=> string(40) "destroy 19cce115d30ebcb747b4bb298a15e0ad" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.30
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 67ca10638af86effd364e60b56d3a562" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 67ca10638af86effd364e60b56d3a562" [9]=> string(52) "current session_id: 67ca10638af86effd364e60b56d3a562" [10]=> string(54) "write 67ca10638af86effd364e60b56d3a562: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 67ca10638af86effd364e60b56d3a562" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 67ca10638af86effd364e60b56d3a562" [16]=> string(40) "destroy 67ca10638af86effd364e60b56d3a562" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.29
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 802cc6a1f844e534826fb02b6150afb4" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 802cc6a1f844e534826fb02b6150afb4" [9]=> string(52) "current session_id: 802cc6a1f844e534826fb02b6150afb4" [10]=> string(54) "write 802cc6a1f844e534826fb02b6150afb4: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 802cc6a1f844e534826fb02b6150afb4" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 802cc6a1f844e534826fb02b6150afb4" [16]=> string(40) "destroy 802cc6a1f844e534826fb02b6150afb4" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.28
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 733dd837860e7c0ca00bb511054ab479" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 733dd837860e7c0ca00bb511054ab479" [9]=> string(52) "current session_id: 733dd837860e7c0ca00bb511054ab479" [10]=> string(54) "write 733dd837860e7c0ca00bb511054ab479: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 733dd837860e7c0ca00bb511054ab479" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 733dd837860e7c0ca00bb511054ab479" [16]=> string(40) "destroy 733dd837860e7c0ca00bb511054ab479" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.27
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read ebbc0f2db5ab699e61fe1c67aca6018c" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: ebbc0f2db5ab699e61fe1c67aca6018c" [9]=> string(52) "current session_id: ebbc0f2db5ab699e61fe1c67aca6018c" [10]=> string(54) "write ebbc0f2db5ab699e61fe1c67aca6018c: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: ebbc0f2db5ab699e61fe1c67aca6018c" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read ebbc0f2db5ab699e61fe1c67aca6018c" [16]=> string(40) "destroy ebbc0f2db5ab699e61fe1c67aca6018c" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.26
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read ffb31939ed7eda4284bc2c2a79612681" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: ffb31939ed7eda4284bc2c2a79612681" [9]=> string(52) "current session_id: ffb31939ed7eda4284bc2c2a79612681" [10]=> string(54) "write ffb31939ed7eda4284bc2c2a79612681: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: ffb31939ed7eda4284bc2c2a79612681" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read ffb31939ed7eda4284bc2c2a79612681" [16]=> string(40) "destroy ffb31939ed7eda4284bc2c2a79612681" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.25
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 4e66ff1bc3096f262b3a700ac1740a1e" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 4e66ff1bc3096f262b3a700ac1740a1e" [9]=> string(52) "current session_id: 4e66ff1bc3096f262b3a700ac1740a1e" [10]=> string(54) "write 4e66ff1bc3096f262b3a700ac1740a1e: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 4e66ff1bc3096f262b3a700ac1740a1e" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 4e66ff1bc3096f262b3a700ac1740a1e" [16]=> string(40) "destroy 4e66ff1bc3096f262b3a700ac1740a1e" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.24
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 467a422a1340d81b983a0779780cb636" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 467a422a1340d81b983a0779780cb636" [9]=> string(52) "current session_id: 467a422a1340d81b983a0779780cb636" [10]=> string(54) "write 467a422a1340d81b983a0779780cb636: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 467a422a1340d81b983a0779780cb636" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 467a422a1340d81b983a0779780cb636" [16]=> string(40) "destroy 467a422a1340d81b983a0779780cb636" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.23
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 59f6fe53234a7e8af92e965d3a8c15d7" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 59f6fe53234a7e8af92e965d3a8c15d7" [9]=> string(52) "current session_id: 59f6fe53234a7e8af92e965d3a8c15d7" [10]=> string(54) "write 59f6fe53234a7e8af92e965d3a8c15d7: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 59f6fe53234a7e8af92e965d3a8c15d7" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 59f6fe53234a7e8af92e965d3a8c15d7" [16]=> string(40) "destroy 59f6fe53234a7e8af92e965d3a8c15d7" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.22
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 00b25cdad8c02a330312a17a8a3bda28" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 00b25cdad8c02a330312a17a8a3bda28" [9]=> string(52) "current session_id: 00b25cdad8c02a330312a17a8a3bda28" [10]=> string(54) "write 00b25cdad8c02a330312a17a8a3bda28: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 00b25cdad8c02a330312a17a8a3bda28" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 00b25cdad8c02a330312a17a8a3bda28" [16]=> string(40) "destroy 00b25cdad8c02a330312a17a8a3bda28" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.21
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read d249e4e083bb6523d1d9015a1a007264" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: d249e4e083bb6523d1d9015a1a007264" [9]=> string(52) "current session_id: d249e4e083bb6523d1d9015a1a007264" [10]=> string(54) "write d249e4e083bb6523d1d9015a1a007264: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: d249e4e083bb6523d1d9015a1a007264" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read d249e4e083bb6523d1d9015a1a007264" [16]=> string(40) "destroy d249e4e083bb6523d1d9015a1a007264" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.20
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read f998bf689d11b92e2f5602541e0d4b98" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: f998bf689d11b92e2f5602541e0d4b98" [9]=> string(52) "current session_id: f998bf689d11b92e2f5602541e0d4b98" [10]=> string(54) "write f998bf689d11b92e2f5602541e0d4b98: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: f998bf689d11b92e2f5602541e0d4b98" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read f998bf689d11b92e2f5602541e0d4b98" [16]=> string(40) "destroy f998bf689d11b92e2f5602541e0d4b98" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.19
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 84750c6df2ac380516252950cd35ddb4" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 84750c6df2ac380516252950cd35ddb4" [9]=> string(52) "current session_id: 84750c6df2ac380516252950cd35ddb4" [10]=> string(54) "write 84750c6df2ac380516252950cd35ddb4: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 84750c6df2ac380516252950cd35ddb4" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 84750c6df2ac380516252950cd35ddb4" [16]=> string(40) "destroy 84750c6df2ac380516252950cd35ddb4" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.18
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(25) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 2e14897c61af37516eb0fc1182daf8ed" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 2e14897c61af37516eb0fc1182daf8ed" [9]=> string(52) "current session_id: 2e14897c61af37516eb0fc1182daf8ed" [10]=> string(54) "write 2e14897c61af37516eb0fc1182daf8ed: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 2e14897c61af37516eb0fc1182daf8ed" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 2e14897c61af37516eb0fc1182daf8ed" [16]=> string(40) "destroy 2e14897c61af37516eb0fc1182daf8ed" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(7) "gc 1440" [23]=> string(42) "write explicit-session-id: john|s:3:"doe";" [24]=> string(5) "close" }
Output for 5.4.17
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 14433607ccd6392a53db6bac11e3f39c" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 14433607ccd6392a53db6bac11e3f39c" [9]=> string(52) "current session_id: 14433607ccd6392a53db6bac11e3f39c" [10]=> string(54) "write 14433607ccd6392a53db6bac11e3f39c: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 14433607ccd6392a53db6bac11e3f39c" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 14433607ccd6392a53db6bac11e3f39c" [16]=> string(40) "destroy 14433607ccd6392a53db6bac11e3f39c" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.16
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read db8730cd568a62061691bae7486fcef5" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: db8730cd568a62061691bae7486fcef5" [9]=> string(52) "current session_id: db8730cd568a62061691bae7486fcef5" [10]=> string(54) "write db8730cd568a62061691bae7486fcef5: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: db8730cd568a62061691bae7486fcef5" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read db8730cd568a62061691bae7486fcef5" [16]=> string(40) "destroy db8730cd568a62061691bae7486fcef5" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.15
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 4ba2ca35434af748235a8f7f9b9b0407" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 4ba2ca35434af748235a8f7f9b9b0407" [9]=> string(52) "current session_id: 4ba2ca35434af748235a8f7f9b9b0407" [10]=> string(54) "write 4ba2ca35434af748235a8f7f9b9b0407: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 4ba2ca35434af748235a8f7f9b9b0407" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 4ba2ca35434af748235a8f7f9b9b0407" [16]=> string(40) "destroy 4ba2ca35434af748235a8f7f9b9b0407" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.14
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read f97431da56d8086c7495022ba617b112" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: f97431da56d8086c7495022ba617b112" [9]=> string(52) "current session_id: f97431da56d8086c7495022ba617b112" [10]=> string(54) "write f97431da56d8086c7495022ba617b112: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: f97431da56d8086c7495022ba617b112" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read f97431da56d8086c7495022ba617b112" [16]=> string(40) "destroy f97431da56d8086c7495022ba617b112" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.13
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read c18fd5a79e1d2a1d99fc55ea4b41cdcd" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: c18fd5a79e1d2a1d99fc55ea4b41cdcd" [9]=> string(52) "current session_id: c18fd5a79e1d2a1d99fc55ea4b41cdcd" [10]=> string(54) "write c18fd5a79e1d2a1d99fc55ea4b41cdcd: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: c18fd5a79e1d2a1d99fc55ea4b41cdcd" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read c18fd5a79e1d2a1d99fc55ea4b41cdcd" [16]=> string(40) "destroy c18fd5a79e1d2a1d99fc55ea4b41cdcd" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.12
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 40e1aee0dac02c8b2704a9a6660cc339" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 40e1aee0dac02c8b2704a9a6660cc339" [9]=> string(52) "current session_id: 40e1aee0dac02c8b2704a9a6660cc339" [10]=> string(54) "write 40e1aee0dac02c8b2704a9a6660cc339: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 40e1aee0dac02c8b2704a9a6660cc339" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 40e1aee0dac02c8b2704a9a6660cc339" [16]=> string(40) "destroy 40e1aee0dac02c8b2704a9a6660cc339" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.11
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 56f1543d023447fd49e556e7dbc6cdb5" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 56f1543d023447fd49e556e7dbc6cdb5" [9]=> string(52) "current session_id: 56f1543d023447fd49e556e7dbc6cdb5" [10]=> string(54) "write 56f1543d023447fd49e556e7dbc6cdb5: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 56f1543d023447fd49e556e7dbc6cdb5" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 56f1543d023447fd49e556e7dbc6cdb5" [16]=> string(40) "destroy 56f1543d023447fd49e556e7dbc6cdb5" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.10
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 755a8b35626fb2ba3c93f78fb2971cba" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 755a8b35626fb2ba3c93f78fb2971cba" [9]=> string(52) "current session_id: 755a8b35626fb2ba3c93f78fb2971cba" [10]=> string(54) "write 755a8b35626fb2ba3c93f78fb2971cba: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 755a8b35626fb2ba3c93f78fb2971cba" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 755a8b35626fb2ba3c93f78fb2971cba" [16]=> string(40) "destroy 755a8b35626fb2ba3c93f78fb2971cba" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.9
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 322a5992eb1f8e1c44fd96a9bf6dd290" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 322a5992eb1f8e1c44fd96a9bf6dd290" [9]=> string(52) "current session_id: 322a5992eb1f8e1c44fd96a9bf6dd290" [10]=> string(54) "write 322a5992eb1f8e1c44fd96a9bf6dd290: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 322a5992eb1f8e1c44fd96a9bf6dd290" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 322a5992eb1f8e1c44fd96a9bf6dd290" [16]=> string(40) "destroy 322a5992eb1f8e1c44fd96a9bf6dd290" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.8
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read ca915c906267f3b64f307972beea8a39" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: ca915c906267f3b64f307972beea8a39" [9]=> string(52) "current session_id: ca915c906267f3b64f307972beea8a39" [10]=> string(54) "write ca915c906267f3b64f307972beea8a39: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: ca915c906267f3b64f307972beea8a39" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read ca915c906267f3b64f307972beea8a39" [16]=> string(40) "destroy ca915c906267f3b64f307972beea8a39" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.7
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 66ce0b334c15723b08c951a0a30f4346" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 66ce0b334c15723b08c951a0a30f4346" [9]=> string(52) "current session_id: 66ce0b334c15723b08c951a0a30f4346" [10]=> string(54) "write 66ce0b334c15723b08c951a0a30f4346: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 66ce0b334c15723b08c951a0a30f4346" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 66ce0b334c15723b08c951a0a30f4346" [16]=> string(40) "destroy 66ce0b334c15723b08c951a0a30f4346" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.6
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 8d158b24caa8ef670dd0600622d951cb" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 8d158b24caa8ef670dd0600622d951cb" [9]=> string(52) "current session_id: 8d158b24caa8ef670dd0600622d951cb" [10]=> string(54) "write 8d158b24caa8ef670dd0600622d951cb: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 8d158b24caa8ef670dd0600622d951cb" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 8d158b24caa8ef670dd0600622d951cb" [16]=> string(40) "destroy 8d158b24caa8ef670dd0600622d951cb" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.5
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 9c375dd4f042d1758f6ab8af4c3efa81" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 9c375dd4f042d1758f6ab8af4c3efa81" [9]=> string(52) "current session_id: 9c375dd4f042d1758f6ab8af4c3efa81" [10]=> string(54) "write 9c375dd4f042d1758f6ab8af4c3efa81: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 9c375dd4f042d1758f6ab8af4c3efa81" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 9c375dd4f042d1758f6ab8af4c3efa81" [16]=> string(40) "destroy 9c375dd4f042d1758f6ab8af4c3efa81" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.4
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 7e67c6a2b250e7ca4ab9930cae8c97a1" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 7e67c6a2b250e7ca4ab9930cae8c97a1" [9]=> string(52) "current session_id: 7e67c6a2b250e7ca4ab9930cae8c97a1" [10]=> string(54) "write 7e67c6a2b250e7ca4ab9930cae8c97a1: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 7e67c6a2b250e7ca4ab9930cae8c97a1" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 7e67c6a2b250e7ca4ab9930cae8c97a1" [16]=> string(40) "destroy 7e67c6a2b250e7ca4ab9930cae8c97a1" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.3
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read d8473fbb63a2a69a222d4125c983cab3" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: d8473fbb63a2a69a222d4125c983cab3" [9]=> string(52) "current session_id: d8473fbb63a2a69a222d4125c983cab3" [10]=> string(54) "write d8473fbb63a2a69a222d4125c983cab3: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: d8473fbb63a2a69a222d4125c983cab3" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read d8473fbb63a2a69a222d4125c983cab3" [16]=> string(40) "destroy d8473fbb63a2a69a222d4125c983cab3" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.2
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read fe76abb7a6713197ee7ae17e5e6822f7" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: fe76abb7a6713197ee7ae17e5e6822f7" [9]=> string(52) "current session_id: fe76abb7a6713197ee7ae17e5e6822f7" [10]=> string(54) "write fe76abb7a6713197ee7ae17e5e6822f7: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: fe76abb7a6713197ee7ae17e5e6822f7" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read fe76abb7a6713197ee7ae17e5e6822f7" [16]=> string(40) "destroy fe76abb7a6713197ee7ae17e5e6822f7" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.1
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read ac4e4cb5ebde932dce64deff4d17dcb7" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: ac4e4cb5ebde932dce64deff4d17dcb7" [9]=> string(52) "current session_id: ac4e4cb5ebde932dce64deff4d17dcb7" [10]=> string(54) "write ac4e4cb5ebde932dce64deff4d17dcb7: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: ac4e4cb5ebde932dce64deff4d17dcb7" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read ac4e4cb5ebde932dce64deff4d17dcb7" [16]=> string(40) "destroy ac4e4cb5ebde932dce64deff4d17dcb7" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.0
S Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 55 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/qfFTd on line 63 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 70 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/qfFTd:54) in /in/qfFTd on line 76 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/qfFTd:54) in /in/qfFTd on line 76 array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(27) "session_id before start: ''" [2]=> string(23) "isset($_SESSION): false" [3]=> string(19) "headers_sent: false" [4]=> string(14) "open PHPSESSID" [5]=> string(37) "read 84ef6e3ca2dd0740bd72e29253a661d6" [6]=> string(18) "headers_sent: true" [7]=> string(23) "headers_list: array ( )" [8]=> string(52) "current session_id: 84ef6e3ca2dd0740bd72e29253a661d6" [9]=> string(52) "current session_id: 84ef6e3ca2dd0740bd72e29253a661d6" [10]=> string(54) "write 84ef6e3ca2dd0740bd72e29253a661d6: foo|s:3:"bar";" [11]=> string(5) "close" [12]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [13]=> string(56) "session_id after close: 84ef6e3ca2dd0740bd72e29253a661d6" [14]=> string(14) "open PHPSESSID" [15]=> string(37) "read 84ef6e3ca2dd0740bd72e29253a661d6" [16]=> string(40) "destroy 84ef6e3ca2dd0740bd72e29253a661d6" [17]=> string(5) "close" [18]=> string(34) "$_SESSION after destroy: array ( )" [19]=> string(22) "current session_id: ''" [20]=> string(14) "open PHPSESSID" [21]=> string(24) "read explicit-session-id" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/qfFTd 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/qfFTd on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/qfFTd 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/qfFTd on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/qfFTd 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/qfFTd 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/qfFTd on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/qfFTd on line 4
Process exited with code 255.

preferences:
260.3 ms | 401 KiB | 459 Q