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(); session_set_save_handler($handler, true); $handler->messages[] = 'isset($_SESSION): ' . var_export(isset($_SESSION), true); $_SESSION['before'] = 'start'; session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = 'current session_id: ' . session_id(); session_regenerate_id(true); $handler->messages[] = 'current session_id: ' . session_id(); session_write_close(); $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[] = var_export($_SESSION, true); $handler->messages[] = 'current session_id: ' . var_export(session_id(), true); session_id('explicit-session-id'); session_start(); $_SESSION['john'] = 'doe';
Output for 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
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/ol3GF 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/ol3GF 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/ol3GF 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/ol3GF 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/ol3GF 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/ol3GF on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/ol3GF on line 47 Warning: session_start(): Session cannot be started after headers have already been sent in /in/ol3GF on line 52 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/ol3GF on line 57 Warning: session_start(): Session cannot be started after headers have already been sent in /in/ol3GF on line 64 Warning: session_destroy(): Trying to destroy uninitialized session in /in/ol3GF on line 65 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/ol3GF on line 71 Warning: session_start(): Session cannot be started after headers have already been sent in /in/ol3GF on line 72 array(9) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(20) "current session_id: " [3]=> string(20) "current session_id: " [4]=> string(73) "$_SESSION after close: array ( 'before' => 'start', 'foo' => 'bar', )" [5]=> string(24) "session_id after close: " [6]=> string(75) "$_SESSION after destroy: array ( 'before' => 'start', 'foo' => 'bar', )" [7]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [8]=> string(22) "current session_id: ''" }
Output for 8.0.0 - 8.0.30
Fatal error: Uncaught TypeError: Session callback must have a return value of type bool, null returned in /in/ol3GF:52 Stack trace: #0 /in/ol3GF(52): session_start() #1 {main} thrown in /in/ol3GF on line 52 array(3) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" }
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: session_start(): Session callback expects true/false return value in /in/ol3GF on line 52 Warning: session_start(): Session callback expects true/false return value in /in/ol3GF on line 52 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/ol3GF on line 52 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/ol3GF on line 57 Warning: session_start(): Cannot start session when headers already sent in /in/ol3GF on line 64 Warning: session_destroy(): Trying to destroy uninitialized session in /in/ol3GF on line 65 Warning: session_id(): Cannot change session id when headers already sent in /in/ol3GF on line 71 Warning: session_start(): Cannot start session when headers already sent in /in/ol3GF on line 72 array(11) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(5) "close" [4]=> string(20) "current session_id: " [5]=> string(20) "current session_id: " [6]=> string(73) "$_SESSION after close: array ( 'before' => 'start', 'foo' => 'bar', )" [7]=> string(24) "session_id after close: " [8]=> string(75) "$_SESSION after destroy: array ( 'before' => 'start', 'foo' => 'bar', )" [9]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [10]=> string(22) "current session_id: ''" }
Output for 7.1.0 - 7.1.33
Warning: session_start(): Session callback expects true/false return value in /in/ol3GF on line 52 Warning: session_start(): Session callback expects true/false return value in /in/ol3GF on line 52 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/ol3GF on line 52
Process exited with code 255.
Output for 7.0.0 - 7.0.20
Warning: session_start(): Session callback expects true/false return value in /in/ol3GF on line 52 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/ol3GF on line 52 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.28
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 40dbd4178cd3cfdff677c242367c511a" [4]=> string(52) "current session_id: 40dbd4178cd3cfdff677c242367c511a" [5]=> string(40) "destroy 40dbd4178cd3cfdff677c242367c511a" [6]=> string(52) "current session_id: c91a4f3090bd2294b63b6eacb3d15018" [7]=> string(54) "write c91a4f3090bd2294b63b6eacb3d15018: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: c91a4f3090bd2294b63b6eacb3d15018" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read c91a4f3090bd2294b63b6eacb3d15018" [13]=> string(40) "destroy c91a4f3090bd2294b63b6eacb3d15018" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.21
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 7dd69090563ffb8e01c380d6fe33d8e7" [4]=> string(52) "current session_id: 7dd69090563ffb8e01c380d6fe33d8e7" [5]=> string(40) "destroy 7dd69090563ffb8e01c380d6fe33d8e7" [6]=> string(52) "current session_id: f3ba1a6f2cf6458f4c20d62acb4767bf" [7]=> string(54) "write f3ba1a6f2cf6458f4c20d62acb4767bf: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: f3ba1a6f2cf6458f4c20d62acb4767bf" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read f3ba1a6f2cf6458f4c20d62acb4767bf" [13]=> string(40) "destroy f3ba1a6f2cf6458f4c20d62acb4767bf" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.20
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read d70aec2f99426853031416dc3965e45d" [4]=> string(52) "current session_id: d70aec2f99426853031416dc3965e45d" [5]=> string(40) "destroy d70aec2f99426853031416dc3965e45d" [6]=> string(52) "current session_id: e9fcec7d2b8f4917f9ef2bc0037bafde" [7]=> string(54) "write e9fcec7d2b8f4917f9ef2bc0037bafde: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: e9fcec7d2b8f4917f9ef2bc0037bafde" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read e9fcec7d2b8f4917f9ef2bc0037bafde" [13]=> string(40) "destroy e9fcec7d2b8f4917f9ef2bc0037bafde" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.19
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read a1c5d4299e47459a858476cf0b4bc270" [4]=> string(52) "current session_id: a1c5d4299e47459a858476cf0b4bc270" [5]=> string(40) "destroy a1c5d4299e47459a858476cf0b4bc270" [6]=> string(52) "current session_id: e31fb535bf62487435aacba92ecd09dd" [7]=> string(54) "write e31fb535bf62487435aacba92ecd09dd: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: e31fb535bf62487435aacba92ecd09dd" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read e31fb535bf62487435aacba92ecd09dd" [13]=> string(40) "destroy e31fb535bf62487435aacba92ecd09dd" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.18
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 7259f4c689bdedd930b22867e90bfb73" [4]=> string(52) "current session_id: 7259f4c689bdedd930b22867e90bfb73" [5]=> string(40) "destroy 7259f4c689bdedd930b22867e90bfb73" [6]=> string(52) "current session_id: cf10db8e54dbbf74ec2fee8c97a100db" [7]=> string(54) "write cf10db8e54dbbf74ec2fee8c97a100db: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: cf10db8e54dbbf74ec2fee8c97a100db" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read cf10db8e54dbbf74ec2fee8c97a100db" [13]=> string(40) "destroy cf10db8e54dbbf74ec2fee8c97a100db" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.17
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 62b618270bf62bbe1ee04ff61be5504d" [4]=> string(52) "current session_id: 62b618270bf62bbe1ee04ff61be5504d" [5]=> string(40) "destroy 62b618270bf62bbe1ee04ff61be5504d" [6]=> string(52) "current session_id: b6e2a8712cb5be0a3b6fceb0e9336ac1" [7]=> string(54) "write b6e2a8712cb5be0a3b6fceb0e9336ac1: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: b6e2a8712cb5be0a3b6fceb0e9336ac1" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read b6e2a8712cb5be0a3b6fceb0e9336ac1" [13]=> string(40) "destroy b6e2a8712cb5be0a3b6fceb0e9336ac1" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.16
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 155127ebb50e0da83819ceaba7bd8664" [4]=> string(52) "current session_id: 155127ebb50e0da83819ceaba7bd8664" [5]=> string(40) "destroy 155127ebb50e0da83819ceaba7bd8664" [6]=> string(52) "current session_id: a91a01d145792408e50040af8a33c11e" [7]=> string(54) "write a91a01d145792408e50040af8a33c11e: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: a91a01d145792408e50040af8a33c11e" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read a91a01d145792408e50040af8a33c11e" [13]=> string(40) "destroy a91a01d145792408e50040af8a33c11e" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.15
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 3743e504d5251814a776f1c946ab6ba9" [4]=> string(52) "current session_id: 3743e504d5251814a776f1c946ab6ba9" [5]=> string(40) "destroy 3743e504d5251814a776f1c946ab6ba9" [6]=> string(52) "current session_id: a122523b3efa103c937644382852a3bd" [7]=> string(54) "write a122523b3efa103c937644382852a3bd: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: a122523b3efa103c937644382852a3bd" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read a122523b3efa103c937644382852a3bd" [13]=> string(40) "destroy a122523b3efa103c937644382852a3bd" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.14
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read e471451ecbf78741717114a38fc60c14" [4]=> string(52) "current session_id: e471451ecbf78741717114a38fc60c14" [5]=> string(40) "destroy e471451ecbf78741717114a38fc60c14" [6]=> string(52) "current session_id: a9b24a407bc24b347131ef50e9b1a507" [7]=> string(54) "write a9b24a407bc24b347131ef50e9b1a507: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: a9b24a407bc24b347131ef50e9b1a507" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read a9b24a407bc24b347131ef50e9b1a507" [13]=> string(40) "destroy a9b24a407bc24b347131ef50e9b1a507" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.13
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 9c99331001a29a00c1047953fa605e25" [4]=> string(52) "current session_id: 9c99331001a29a00c1047953fa605e25" [5]=> string(40) "destroy 9c99331001a29a00c1047953fa605e25" [6]=> string(52) "current session_id: 26922c4ef4e942ef01db85fda6113ef7" [7]=> string(54) "write 26922c4ef4e942ef01db85fda6113ef7: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 26922c4ef4e942ef01db85fda6113ef7" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 26922c4ef4e942ef01db85fda6113ef7" [13]=> string(40) "destroy 26922c4ef4e942ef01db85fda6113ef7" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.12
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read a3eaaa524f897df91d0fb0959ce1d5c9" [4]=> string(52) "current session_id: a3eaaa524f897df91d0fb0959ce1d5c9" [5]=> string(40) "destroy a3eaaa524f897df91d0fb0959ce1d5c9" [6]=> string(52) "current session_id: 1a5fdfd2ac45efeedc968d0de25104f4" [7]=> string(54) "write 1a5fdfd2ac45efeedc968d0de25104f4: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 1a5fdfd2ac45efeedc968d0de25104f4" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 1a5fdfd2ac45efeedc968d0de25104f4" [13]=> string(40) "destroy 1a5fdfd2ac45efeedc968d0de25104f4" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.11
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 74f270b05c2ee15e67ba70ef22ce4409" [4]=> string(52) "current session_id: 74f270b05c2ee15e67ba70ef22ce4409" [5]=> string(40) "destroy 74f270b05c2ee15e67ba70ef22ce4409" [6]=> string(52) "current session_id: 1d77e815124eacaa12b15738fe085f75" [7]=> string(54) "write 1d77e815124eacaa12b15738fe085f75: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 1d77e815124eacaa12b15738fe085f75" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 1d77e815124eacaa12b15738fe085f75" [13]=> string(40) "destroy 1d77e815124eacaa12b15738fe085f75" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.10
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 15d728fcfaad74cec16c245877fb84c2" [4]=> string(52) "current session_id: 15d728fcfaad74cec16c245877fb84c2" [5]=> string(40) "destroy 15d728fcfaad74cec16c245877fb84c2" [6]=> string(52) "current session_id: 61f6cc9a4a5356908aa7ab71b8729103" [7]=> string(54) "write 61f6cc9a4a5356908aa7ab71b8729103: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 61f6cc9a4a5356908aa7ab71b8729103" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 61f6cc9a4a5356908aa7ab71b8729103" [13]=> string(40) "destroy 61f6cc9a4a5356908aa7ab71b8729103" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.9
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 4d7ce76448fc09d67dad24dde8d5182e" [4]=> string(52) "current session_id: 4d7ce76448fc09d67dad24dde8d5182e" [5]=> string(40) "destroy 4d7ce76448fc09d67dad24dde8d5182e" [6]=> string(52) "current session_id: 267d3aabd35f92d5035b08e25007e840" [7]=> string(54) "write 267d3aabd35f92d5035b08e25007e840: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 267d3aabd35f92d5035b08e25007e840" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 267d3aabd35f92d5035b08e25007e840" [13]=> string(40) "destroy 267d3aabd35f92d5035b08e25007e840" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.6.8
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 475e91059bfc8e3a3241bf907e8a007b" [4]=> string(52) "current session_id: 475e91059bfc8e3a3241bf907e8a007b" [5]=> string(40) "destroy 475e91059bfc8e3a3241bf907e8a007b" [6]=> string(52) "current session_id: ae0789dfac0c47f22e013a421bd20cef" [7]=> string(54) "write ae0789dfac0c47f22e013a421bd20cef: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: ae0789dfac0c47f22e013a421bd20cef" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read ae0789dfac0c47f22e013a421bd20cef" [13]=> string(40) "destroy ae0789dfac0c47f22e013a421bd20cef" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.35
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 4acc9625197135ce2a1782f5ff656495" [4]=> string(52) "current session_id: 4acc9625197135ce2a1782f5ff656495" [5]=> string(40) "destroy 4acc9625197135ce2a1782f5ff656495" [6]=> string(52) "current session_id: 1b8e51a6fa6d79366fb8527d753583a9" [7]=> string(54) "write 1b8e51a6fa6d79366fb8527d753583a9: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 1b8e51a6fa6d79366fb8527d753583a9" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 1b8e51a6fa6d79366fb8527d753583a9" [13]=> string(40) "destroy 1b8e51a6fa6d79366fb8527d753583a9" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.34
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read fd61646f4344f3fa4658423abb1352fe" [4]=> string(52) "current session_id: fd61646f4344f3fa4658423abb1352fe" [5]=> string(40) "destroy fd61646f4344f3fa4658423abb1352fe" [6]=> string(52) "current session_id: a8bcab6ece5248d344cc405973b36fab" [7]=> string(54) "write a8bcab6ece5248d344cc405973b36fab: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: a8bcab6ece5248d344cc405973b36fab" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read a8bcab6ece5248d344cc405973b36fab" [13]=> string(40) "destroy a8bcab6ece5248d344cc405973b36fab" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.33
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 160ca6347d1605c009505f52e2938d8a" [4]=> string(52) "current session_id: 160ca6347d1605c009505f52e2938d8a" [5]=> string(40) "destroy 160ca6347d1605c009505f52e2938d8a" [6]=> string(52) "current session_id: 5dea848bf6d32342fa1dc128e797ecc0" [7]=> string(54) "write 5dea848bf6d32342fa1dc128e797ecc0: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 5dea848bf6d32342fa1dc128e797ecc0" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 5dea848bf6d32342fa1dc128e797ecc0" [13]=> string(40) "destroy 5dea848bf6d32342fa1dc128e797ecc0" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.32
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read fde8af96408dbdf3a63dad9d3d23e42c" [4]=> string(52) "current session_id: fde8af96408dbdf3a63dad9d3d23e42c" [5]=> string(40) "destroy fde8af96408dbdf3a63dad9d3d23e42c" [6]=> string(52) "current session_id: 7b3a66cab98316102c1c582bf95dd52c" [7]=> string(54) "write 7b3a66cab98316102c1c582bf95dd52c: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 7b3a66cab98316102c1c582bf95dd52c" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 7b3a66cab98316102c1c582bf95dd52c" [13]=> string(40) "destroy 7b3a66cab98316102c1c582bf95dd52c" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.31
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read c232eb826ef784abbf322141dea8813c" [4]=> string(52) "current session_id: c232eb826ef784abbf322141dea8813c" [5]=> string(40) "destroy c232eb826ef784abbf322141dea8813c" [6]=> string(52) "current session_id: b0135a18f73c1c2d6be737905d37b9f8" [7]=> string(54) "write b0135a18f73c1c2d6be737905d37b9f8: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: b0135a18f73c1c2d6be737905d37b9f8" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read b0135a18f73c1c2d6be737905d37b9f8" [13]=> string(40) "destroy b0135a18f73c1c2d6be737905d37b9f8" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.30
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 1ed02edab3082c62f07fd18bc00e2468" [4]=> string(52) "current session_id: 1ed02edab3082c62f07fd18bc00e2468" [5]=> string(40) "destroy 1ed02edab3082c62f07fd18bc00e2468" [6]=> string(52) "current session_id: 03d4cc159db5ae852b2e5e274fcc2cfa" [7]=> string(54) "write 03d4cc159db5ae852b2e5e274fcc2cfa: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 03d4cc159db5ae852b2e5e274fcc2cfa" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 03d4cc159db5ae852b2e5e274fcc2cfa" [13]=> string(40) "destroy 03d4cc159db5ae852b2e5e274fcc2cfa" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.29
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read f979651d387296849fbfece6c8bba29b" [4]=> string(52) "current session_id: f979651d387296849fbfece6c8bba29b" [5]=> string(40) "destroy f979651d387296849fbfece6c8bba29b" [6]=> string(52) "current session_id: f517762801792b82657927dbfa35607a" [7]=> string(54) "write f517762801792b82657927dbfa35607a: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: f517762801792b82657927dbfa35607a" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read f517762801792b82657927dbfa35607a" [13]=> string(40) "destroy f517762801792b82657927dbfa35607a" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.28
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 17b3237c16a3421fa8706971f33bffba" [4]=> string(52) "current session_id: 17b3237c16a3421fa8706971f33bffba" [5]=> string(40) "destroy 17b3237c16a3421fa8706971f33bffba" [6]=> string(52) "current session_id: d301f374bfb524d422fb40ce845ec33d" [7]=> string(54) "write d301f374bfb524d422fb40ce845ec33d: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: d301f374bfb524d422fb40ce845ec33d" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read d301f374bfb524d422fb40ce845ec33d" [13]=> string(40) "destroy d301f374bfb524d422fb40ce845ec33d" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.27
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 965d12428174bdb625281665786a052f" [4]=> string(52) "current session_id: 965d12428174bdb625281665786a052f" [5]=> string(40) "destroy 965d12428174bdb625281665786a052f" [6]=> string(52) "current session_id: 2a5685891419aeb092bb1ccb01ae46f0" [7]=> string(54) "write 2a5685891419aeb092bb1ccb01ae46f0: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 2a5685891419aeb092bb1ccb01ae46f0" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 2a5685891419aeb092bb1ccb01ae46f0" [13]=> string(40) "destroy 2a5685891419aeb092bb1ccb01ae46f0" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.26
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 39183964e1f767d8070877b8002b8512" [4]=> string(52) "current session_id: 39183964e1f767d8070877b8002b8512" [5]=> string(40) "destroy 39183964e1f767d8070877b8002b8512" [6]=> string(52) "current session_id: cf2081c0b3f3b072696027f47429b21b" [7]=> string(54) "write cf2081c0b3f3b072696027f47429b21b: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: cf2081c0b3f3b072696027f47429b21b" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read cf2081c0b3f3b072696027f47429b21b" [13]=> string(40) "destroy cf2081c0b3f3b072696027f47429b21b" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.25
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 35922d5249d6155690d3e0968ba33c18" [4]=> string(52) "current session_id: 35922d5249d6155690d3e0968ba33c18" [5]=> string(40) "destroy 35922d5249d6155690d3e0968ba33c18" [6]=> string(52) "current session_id: c372d2e06b0bbe4fd9c0169d5807b2ae" [7]=> string(54) "write c372d2e06b0bbe4fd9c0169d5807b2ae: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: c372d2e06b0bbe4fd9c0169d5807b2ae" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read c372d2e06b0bbe4fd9c0169d5807b2ae" [13]=> string(40) "destroy c372d2e06b0bbe4fd9c0169d5807b2ae" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.5.24
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read dac244c3b38db45b660d26ca0bceed35" [4]=> string(52) "current session_id: dac244c3b38db45b660d26ca0bceed35" [5]=> string(40) "destroy dac244c3b38db45b660d26ca0bceed35" [6]=> string(52) "current session_id: df983ae3a31af735d2fca4ea702d2beb" [7]=> string(54) "write df983ae3a31af735d2fca4ea702d2beb: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: df983ae3a31af735d2fca4ea702d2beb" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read df983ae3a31af735d2fca4ea702d2beb" [13]=> string(40) "destroy df983ae3a31af735d2fca4ea702d2beb" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.45
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read e56248c7c37a72dc162ff39cce623ddf" [4]=> string(52) "current session_id: e56248c7c37a72dc162ff39cce623ddf" [5]=> string(40) "destroy e56248c7c37a72dc162ff39cce623ddf" [6]=> string(52) "current session_id: cc2735058026fc411d4251a59cb50107" [7]=> string(54) "write cc2735058026fc411d4251a59cb50107: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: cc2735058026fc411d4251a59cb50107" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read cc2735058026fc411d4251a59cb50107" [13]=> string(40) "destroy cc2735058026fc411d4251a59cb50107" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.44
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read f04e19a1880b0a7a93b649daaf62cb59" [4]=> string(52) "current session_id: f04e19a1880b0a7a93b649daaf62cb59" [5]=> string(40) "destroy f04e19a1880b0a7a93b649daaf62cb59" [6]=> string(52) "current session_id: b2782aecd175ad191a5189504183ce2e" [7]=> string(54) "write b2782aecd175ad191a5189504183ce2e: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: b2782aecd175ad191a5189504183ce2e" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read b2782aecd175ad191a5189504183ce2e" [13]=> string(40) "destroy b2782aecd175ad191a5189504183ce2e" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.43
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read ad4bc81ff9a6207fb9317a17824fd3a3" [4]=> string(52) "current session_id: ad4bc81ff9a6207fb9317a17824fd3a3" [5]=> string(40) "destroy ad4bc81ff9a6207fb9317a17824fd3a3" [6]=> string(52) "current session_id: 396e6a82795abc57bc699ced29eb2ea6" [7]=> string(54) "write 396e6a82795abc57bc699ced29eb2ea6: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 396e6a82795abc57bc699ced29eb2ea6" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 396e6a82795abc57bc699ced29eb2ea6" [13]=> string(40) "destroy 396e6a82795abc57bc699ced29eb2ea6" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.42
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read df9da270ba7c2fb640d23f8ab28cca6f" [4]=> string(52) "current session_id: df9da270ba7c2fb640d23f8ab28cca6f" [5]=> string(40) "destroy df9da270ba7c2fb640d23f8ab28cca6f" [6]=> string(52) "current session_id: 4cdc54583388b5bade9be9b57a305423" [7]=> string(54) "write 4cdc54583388b5bade9be9b57a305423: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 4cdc54583388b5bade9be9b57a305423" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 4cdc54583388b5bade9be9b57a305423" [13]=> string(40) "destroy 4cdc54583388b5bade9be9b57a305423" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.41
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read ef20aa5d3c57aeedb6700b55e22403c0" [4]=> string(52) "current session_id: ef20aa5d3c57aeedb6700b55e22403c0" [5]=> string(40) "destroy ef20aa5d3c57aeedb6700b55e22403c0" [6]=> string(52) "current session_id: b620a1773723b946e1da7c5f8110f25f" [7]=> string(54) "write b620a1773723b946e1da7c5f8110f25f: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: b620a1773723b946e1da7c5f8110f25f" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read b620a1773723b946e1da7c5f8110f25f" [13]=> string(40) "destroy b620a1773723b946e1da7c5f8110f25f" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.40
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 1bd2ded02c33235f34eb1a4b0a57bfd4" [4]=> string(52) "current session_id: 1bd2ded02c33235f34eb1a4b0a57bfd4" [5]=> string(40) "destroy 1bd2ded02c33235f34eb1a4b0a57bfd4" [6]=> string(52) "current session_id: 19961def013a76f2677e67dc0ff2e0ed" [7]=> string(54) "write 19961def013a76f2677e67dc0ff2e0ed: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 19961def013a76f2677e67dc0ff2e0ed" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 19961def013a76f2677e67dc0ff2e0ed" [13]=> string(40) "destroy 19961def013a76f2677e67dc0ff2e0ed" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.39
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 32a5753b8202a00962243b9dec458a82" [4]=> string(52) "current session_id: 32a5753b8202a00962243b9dec458a82" [5]=> string(40) "destroy 32a5753b8202a00962243b9dec458a82" [6]=> string(52) "current session_id: afc8bc725ae6f1b57e5741dab45abce7" [7]=> string(54) "write afc8bc725ae6f1b57e5741dab45abce7: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: afc8bc725ae6f1b57e5741dab45abce7" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read afc8bc725ae6f1b57e5741dab45abce7" [13]=> string(40) "destroy afc8bc725ae6f1b57e5741dab45abce7" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.38
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read ea44bda8b72d19f678e57924eef06bba" [4]=> string(52) "current session_id: ea44bda8b72d19f678e57924eef06bba" [5]=> string(40) "destroy ea44bda8b72d19f678e57924eef06bba" [6]=> string(52) "current session_id: 5bd037878f9c0f5d39d6b85e1685e313" [7]=> string(54) "write 5bd037878f9c0f5d39d6b85e1685e313: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 5bd037878f9c0f5d39d6b85e1685e313" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 5bd037878f9c0f5d39d6b85e1685e313" [13]=> string(40) "destroy 5bd037878f9c0f5d39d6b85e1685e313" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.37
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 36e423031c1063b4ab4d6e394011834b" [4]=> string(52) "current session_id: 36e423031c1063b4ab4d6e394011834b" [5]=> string(40) "destroy 36e423031c1063b4ab4d6e394011834b" [6]=> string(52) "current session_id: 5df380067f57951513756a7f4edd8752" [7]=> string(54) "write 5df380067f57951513756a7f4edd8752: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 5df380067f57951513756a7f4edd8752" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 5df380067f57951513756a7f4edd8752" [13]=> string(40) "destroy 5df380067f57951513756a7f4edd8752" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.36
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 4cb95edb181d5ed6b03eac864ce69911" [4]=> string(7) "gc 1440" [5]=> string(52) "current session_id: 4cb95edb181d5ed6b03eac864ce69911" [6]=> string(40) "destroy 4cb95edb181d5ed6b03eac864ce69911" [7]=> string(52) "current session_id: 354b43194aff26d0021ce5d6803c1747" [8]=> string(54) "write 354b43194aff26d0021ce5d6803c1747: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 354b43194aff26d0021ce5d6803c1747" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 354b43194aff26d0021ce5d6803c1747" [14]=> string(40) "destroy 354b43194aff26d0021ce5d6803c1747" [15]=> string(5) "close" [16]=> string(34) "$_SESSION after destroy: array ( )" [17]=> string(9) "array ( )" [18]=> string(22) "current session_id: ''" [19]=> string(14) "open PHPSESSID" [20]=> string(24) "read explicit-session-id" [21]=> string(42) "write explicit-session-id: john|s:3:"doe";" [22]=> string(5) "close" }
Output for 5.4.35
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 2ac06dfc52cf78da044550a99f1bcef7" [4]=> string(52) "current session_id: 2ac06dfc52cf78da044550a99f1bcef7" [5]=> string(40) "destroy 2ac06dfc52cf78da044550a99f1bcef7" [6]=> string(52) "current session_id: 18c5e1eb78715e82b0c39e1690264388" [7]=> string(54) "write 18c5e1eb78715e82b0c39e1690264388: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 18c5e1eb78715e82b0c39e1690264388" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 18c5e1eb78715e82b0c39e1690264388" [13]=> string(40) "destroy 18c5e1eb78715e82b0c39e1690264388" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.34
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 6392d34d93241fa22dd7a041f62abc0d" [4]=> string(52) "current session_id: 6392d34d93241fa22dd7a041f62abc0d" [5]=> string(40) "destroy 6392d34d93241fa22dd7a041f62abc0d" [6]=> string(52) "current session_id: 7a34ba274c2055daa6e64c3ac3978090" [7]=> string(54) "write 7a34ba274c2055daa6e64c3ac3978090: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 7a34ba274c2055daa6e64c3ac3978090" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 7a34ba274c2055daa6e64c3ac3978090" [13]=> string(40) "destroy 7a34ba274c2055daa6e64c3ac3978090" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.32
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read d1ca07b4c4e35185e59cf13d9b555d3c" [4]=> string(52) "current session_id: d1ca07b4c4e35185e59cf13d9b555d3c" [5]=> string(40) "destroy d1ca07b4c4e35185e59cf13d9b555d3c" [6]=> string(52) "current session_id: 1866b5f20b911b9893a85811355b0ce8" [7]=> string(54) "write 1866b5f20b911b9893a85811355b0ce8: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 1866b5f20b911b9893a85811355b0ce8" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 1866b5f20b911b9893a85811355b0ce8" [13]=> string(40) "destroy 1866b5f20b911b9893a85811355b0ce8" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.31
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 9194c6874a20375ccefe3cd6bdc786e9" [4]=> string(52) "current session_id: 9194c6874a20375ccefe3cd6bdc786e9" [5]=> string(40) "destroy 9194c6874a20375ccefe3cd6bdc786e9" [6]=> string(52) "current session_id: 4e5d5a74b93b3ad5b455406f75c7f8e0" [7]=> string(54) "write 4e5d5a74b93b3ad5b455406f75c7f8e0: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 4e5d5a74b93b3ad5b455406f75c7f8e0" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 4e5d5a74b93b3ad5b455406f75c7f8e0" [13]=> string(40) "destroy 4e5d5a74b93b3ad5b455406f75c7f8e0" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.30
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 727f6d5bc86c1e21da5c447810cc482c" [4]=> string(52) "current session_id: 727f6d5bc86c1e21da5c447810cc482c" [5]=> string(40) "destroy 727f6d5bc86c1e21da5c447810cc482c" [6]=> string(52) "current session_id: 41bd045f8a5d82ec9be50e11fbf6af0b" [7]=> string(54) "write 41bd045f8a5d82ec9be50e11fbf6af0b: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 41bd045f8a5d82ec9be50e11fbf6af0b" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 41bd045f8a5d82ec9be50e11fbf6af0b" [13]=> string(40) "destroy 41bd045f8a5d82ec9be50e11fbf6af0b" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.29
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 24950dad1e792edba07d0a2e0563ac2f" [4]=> string(52) "current session_id: 24950dad1e792edba07d0a2e0563ac2f" [5]=> string(40) "destroy 24950dad1e792edba07d0a2e0563ac2f" [6]=> string(52) "current session_id: 0c8d4ebc7cd5913bb5f526183efde2d8" [7]=> string(54) "write 0c8d4ebc7cd5913bb5f526183efde2d8: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 0c8d4ebc7cd5913bb5f526183efde2d8" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 0c8d4ebc7cd5913bb5f526183efde2d8" [13]=> string(40) "destroy 0c8d4ebc7cd5913bb5f526183efde2d8" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.28
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 9b5f7f0d1601ef01fe610fec7c73778c" [4]=> string(52) "current session_id: 9b5f7f0d1601ef01fe610fec7c73778c" [5]=> string(40) "destroy 9b5f7f0d1601ef01fe610fec7c73778c" [6]=> string(52) "current session_id: f8ed99c38dc4fe1147ff20ce0944274a" [7]=> string(54) "write f8ed99c38dc4fe1147ff20ce0944274a: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: f8ed99c38dc4fe1147ff20ce0944274a" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read f8ed99c38dc4fe1147ff20ce0944274a" [13]=> string(40) "destroy f8ed99c38dc4fe1147ff20ce0944274a" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.27
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read e201f3640121f14564432d5d9df7e008" [4]=> string(52) "current session_id: e201f3640121f14564432d5d9df7e008" [5]=> string(40) "destroy e201f3640121f14564432d5d9df7e008" [6]=> string(52) "current session_id: f24582529790c32bf02aee3a5b46ea7d" [7]=> string(54) "write f24582529790c32bf02aee3a5b46ea7d: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: f24582529790c32bf02aee3a5b46ea7d" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read f24582529790c32bf02aee3a5b46ea7d" [13]=> string(40) "destroy f24582529790c32bf02aee3a5b46ea7d" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.26
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 20a8f553f35eb2faaa8780d4cdc9b5a6" [4]=> string(52) "current session_id: 20a8f553f35eb2faaa8780d4cdc9b5a6" [5]=> string(40) "destroy 20a8f553f35eb2faaa8780d4cdc9b5a6" [6]=> string(52) "current session_id: 91e749613bf686cb1a7c4162810b598b" [7]=> string(54) "write 91e749613bf686cb1a7c4162810b598b: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 91e749613bf686cb1a7c4162810b598b" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 91e749613bf686cb1a7c4162810b598b" [13]=> string(40) "destroy 91e749613bf686cb1a7c4162810b598b" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.25
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 6267273c9f8fa3a0241457fe994690d8" [4]=> string(52) "current session_id: 6267273c9f8fa3a0241457fe994690d8" [5]=> string(40) "destroy 6267273c9f8fa3a0241457fe994690d8" [6]=> string(52) "current session_id: 6bb84e763494bced21f7a96b23f92e2a" [7]=> string(54) "write 6bb84e763494bced21f7a96b23f92e2a: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 6bb84e763494bced21f7a96b23f92e2a" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 6bb84e763494bced21f7a96b23f92e2a" [13]=> string(40) "destroy 6bb84e763494bced21f7a96b23f92e2a" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.24
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 8476b4d9fc0eb4b7af3a7be2e0417d58" [4]=> string(52) "current session_id: 8476b4d9fc0eb4b7af3a7be2e0417d58" [5]=> string(40) "destroy 8476b4d9fc0eb4b7af3a7be2e0417d58" [6]=> string(52) "current session_id: aa869fcfca0e681969e9f6f5c9c3dc7e" [7]=> string(54) "write aa869fcfca0e681969e9f6f5c9c3dc7e: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: aa869fcfca0e681969e9f6f5c9c3dc7e" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read aa869fcfca0e681969e9f6f5c9c3dc7e" [13]=> string(40) "destroy aa869fcfca0e681969e9f6f5c9c3dc7e" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.23
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 2763edebdc1a5edb0ec6d5c5c071495a" [4]=> string(52) "current session_id: 2763edebdc1a5edb0ec6d5c5c071495a" [5]=> string(40) "destroy 2763edebdc1a5edb0ec6d5c5c071495a" [6]=> string(52) "current session_id: b4a9187ef3abc543290f74b5d8dc80cd" [7]=> string(54) "write b4a9187ef3abc543290f74b5d8dc80cd: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: b4a9187ef3abc543290f74b5d8dc80cd" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read b4a9187ef3abc543290f74b5d8dc80cd" [13]=> string(40) "destroy b4a9187ef3abc543290f74b5d8dc80cd" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.22
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read ee74a360d160bd7be61d4e3775acb556" [4]=> string(52) "current session_id: ee74a360d160bd7be61d4e3775acb556" [5]=> string(40) "destroy ee74a360d160bd7be61d4e3775acb556" [6]=> string(52) "current session_id: db18408e10a1181e7fe39711989e3941" [7]=> string(54) "write db18408e10a1181e7fe39711989e3941: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: db18408e10a1181e7fe39711989e3941" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read db18408e10a1181e7fe39711989e3941" [13]=> string(40) "destroy db18408e10a1181e7fe39711989e3941" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.21
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 1fc8c24fb419d347db7c598b334e2aa0" [4]=> string(52) "current session_id: 1fc8c24fb419d347db7c598b334e2aa0" [5]=> string(40) "destroy 1fc8c24fb419d347db7c598b334e2aa0" [6]=> string(52) "current session_id: f40a86a50a4b97fc391455d7e739c0f1" [7]=> string(54) "write f40a86a50a4b97fc391455d7e739c0f1: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: f40a86a50a4b97fc391455d7e739c0f1" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read f40a86a50a4b97fc391455d7e739c0f1" [13]=> string(40) "destroy f40a86a50a4b97fc391455d7e739c0f1" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.20
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 5c78eb8409c9c597e2db0e1c9511c77d" [4]=> string(52) "current session_id: 5c78eb8409c9c597e2db0e1c9511c77d" [5]=> string(40) "destroy 5c78eb8409c9c597e2db0e1c9511c77d" [6]=> string(52) "current session_id: 0b3b39180a1ee8161a7fefec7e718e3d" [7]=> string(54) "write 0b3b39180a1ee8161a7fefec7e718e3d: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 0b3b39180a1ee8161a7fefec7e718e3d" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 0b3b39180a1ee8161a7fefec7e718e3d" [13]=> string(40) "destroy 0b3b39180a1ee8161a7fefec7e718e3d" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.19
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 428751dcf2a30f7d6e3c1ce67a0df1cb" [4]=> string(52) "current session_id: 428751dcf2a30f7d6e3c1ce67a0df1cb" [5]=> string(40) "destroy 428751dcf2a30f7d6e3c1ce67a0df1cb" [6]=> string(52) "current session_id: 4506cd3f471fbde9121ebaf4f124dae4" [7]=> string(54) "write 4506cd3f471fbde9121ebaf4f124dae4: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 4506cd3f471fbde9121ebaf4f124dae4" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 4506cd3f471fbde9121ebaf4f124dae4" [13]=> string(40) "destroy 4506cd3f471fbde9121ebaf4f124dae4" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.18
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 5b2370d60043d0f8a8a29ea941a58685" [4]=> string(52) "current session_id: 5b2370d60043d0f8a8a29ea941a58685" [5]=> string(40) "destroy 5b2370d60043d0f8a8a29ea941a58685" [6]=> string(52) "current session_id: 2272840181e08e32e3e6d14a24d0760c" [7]=> string(54) "write 2272840181e08e32e3e6d14a24d0760c: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 2272840181e08e32e3e6d14a24d0760c" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 2272840181e08e32e3e6d14a24d0760c" [13]=> string(40) "destroy 2272840181e08e32e3e6d14a24d0760c" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.17
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 648d7ec51b23e39e1057111fb0a577d8" [4]=> string(52) "current session_id: 648d7ec51b23e39e1057111fb0a577d8" [5]=> string(40) "destroy 648d7ec51b23e39e1057111fb0a577d8" [6]=> string(52) "current session_id: e98f0cef80ad934274ad96368ff367e0" [7]=> string(54) "write e98f0cef80ad934274ad96368ff367e0: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: e98f0cef80ad934274ad96368ff367e0" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read e98f0cef80ad934274ad96368ff367e0" [13]=> string(40) "destroy e98f0cef80ad934274ad96368ff367e0" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.16
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read f98bf2d8fe83944fd632c09f75a9dae5" [4]=> string(52) "current session_id: f98bf2d8fe83944fd632c09f75a9dae5" [5]=> string(40) "destroy f98bf2d8fe83944fd632c09f75a9dae5" [6]=> string(52) "current session_id: dd99ecdb4e7731163777da17a9b7b13d" [7]=> string(54) "write dd99ecdb4e7731163777da17a9b7b13d: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: dd99ecdb4e7731163777da17a9b7b13d" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read dd99ecdb4e7731163777da17a9b7b13d" [13]=> string(40) "destroy dd99ecdb4e7731163777da17a9b7b13d" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.15
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 7ffbb25e4000b979267a523cadd1bd43" [4]=> string(52) "current session_id: 7ffbb25e4000b979267a523cadd1bd43" [5]=> string(40) "destroy 7ffbb25e4000b979267a523cadd1bd43" [6]=> string(52) "current session_id: bccba2275d3fef682ded3385fb0d30e4" [7]=> string(54) "write bccba2275d3fef682ded3385fb0d30e4: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: bccba2275d3fef682ded3385fb0d30e4" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read bccba2275d3fef682ded3385fb0d30e4" [13]=> string(40) "destroy bccba2275d3fef682ded3385fb0d30e4" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.14
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read b6f4708ad54134c11ce962388b5bedba" [4]=> string(52) "current session_id: b6f4708ad54134c11ce962388b5bedba" [5]=> string(40) "destroy b6f4708ad54134c11ce962388b5bedba" [6]=> string(52) "current session_id: 62569ccba90ea02f215bda1e1ac7a5ee" [7]=> string(54) "write 62569ccba90ea02f215bda1e1ac7a5ee: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 62569ccba90ea02f215bda1e1ac7a5ee" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 62569ccba90ea02f215bda1e1ac7a5ee" [13]=> string(40) "destroy 62569ccba90ea02f215bda1e1ac7a5ee" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.13
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 5a80f641154b4acf2b60aeb5d8198c63" [4]=> string(52) "current session_id: 5a80f641154b4acf2b60aeb5d8198c63" [5]=> string(40) "destroy 5a80f641154b4acf2b60aeb5d8198c63" [6]=> string(52) "current session_id: b70138eb48cb55c3522b657e50a6510d" [7]=> string(54) "write b70138eb48cb55c3522b657e50a6510d: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: b70138eb48cb55c3522b657e50a6510d" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read b70138eb48cb55c3522b657e50a6510d" [13]=> string(40) "destroy b70138eb48cb55c3522b657e50a6510d" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.12
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read ef610449c460a9a07a1d295bd95d4973" [4]=> string(52) "current session_id: ef610449c460a9a07a1d295bd95d4973" [5]=> string(40) "destroy ef610449c460a9a07a1d295bd95d4973" [6]=> string(52) "current session_id: 5c02d294dccfcf1be2833ccfee27e427" [7]=> string(54) "write 5c02d294dccfcf1be2833ccfee27e427: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 5c02d294dccfcf1be2833ccfee27e427" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 5c02d294dccfcf1be2833ccfee27e427" [13]=> string(40) "destroy 5c02d294dccfcf1be2833ccfee27e427" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.11
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 3a872387c31e113ca65c2c31974eefef" [4]=> string(52) "current session_id: 3a872387c31e113ca65c2c31974eefef" [5]=> string(40) "destroy 3a872387c31e113ca65c2c31974eefef" [6]=> string(52) "current session_id: b24167047f9add2292d51878f6c3e35a" [7]=> string(54) "write b24167047f9add2292d51878f6c3e35a: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: b24167047f9add2292d51878f6c3e35a" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read b24167047f9add2292d51878f6c3e35a" [13]=> string(40) "destroy b24167047f9add2292d51878f6c3e35a" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.10
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 86a4cb7a9793536444e8d24c0d2aaec4" [4]=> string(52) "current session_id: 86a4cb7a9793536444e8d24c0d2aaec4" [5]=> string(40) "destroy 86a4cb7a9793536444e8d24c0d2aaec4" [6]=> string(52) "current session_id: 358258494a1c08f58c88615349f45246" [7]=> string(54) "write 358258494a1c08f58c88615349f45246: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 358258494a1c08f58c88615349f45246" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 358258494a1c08f58c88615349f45246" [13]=> string(40) "destroy 358258494a1c08f58c88615349f45246" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.9
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 90568bf82596ad791f8e867b80b8421f" [4]=> string(52) "current session_id: 90568bf82596ad791f8e867b80b8421f" [5]=> string(40) "destroy 90568bf82596ad791f8e867b80b8421f" [6]=> string(52) "current session_id: ac55fb9d2be1b9f4eefda22b4964d7f2" [7]=> string(54) "write ac55fb9d2be1b9f4eefda22b4964d7f2: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: ac55fb9d2be1b9f4eefda22b4964d7f2" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read ac55fb9d2be1b9f4eefda22b4964d7f2" [13]=> string(40) "destroy ac55fb9d2be1b9f4eefda22b4964d7f2" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.8
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read cd867baa83dd6ed456d7f805c7a97866" [4]=> string(52) "current session_id: cd867baa83dd6ed456d7f805c7a97866" [5]=> string(40) "destroy cd867baa83dd6ed456d7f805c7a97866" [6]=> string(52) "current session_id: 511ddd085dcff72d50706c24fa143f53" [7]=> string(54) "write 511ddd085dcff72d50706c24fa143f53: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 511ddd085dcff72d50706c24fa143f53" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 511ddd085dcff72d50706c24fa143f53" [13]=> string(40) "destroy 511ddd085dcff72d50706c24fa143f53" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.7
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read a722d9acc979b8c7549bf9990649b969" [4]=> string(52) "current session_id: a722d9acc979b8c7549bf9990649b969" [5]=> string(40) "destroy a722d9acc979b8c7549bf9990649b969" [6]=> string(52) "current session_id: feed07a0e38ca60cd1ba4f18c2b5e970" [7]=> string(54) "write feed07a0e38ca60cd1ba4f18c2b5e970: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: feed07a0e38ca60cd1ba4f18c2b5e970" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read feed07a0e38ca60cd1ba4f18c2b5e970" [13]=> string(40) "destroy feed07a0e38ca60cd1ba4f18c2b5e970" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.6
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 2f18290c2704ef1db6911ec45f00497e" [4]=> string(52) "current session_id: 2f18290c2704ef1db6911ec45f00497e" [5]=> string(40) "destroy 2f18290c2704ef1db6911ec45f00497e" [6]=> string(52) "current session_id: f2ef5060dee156ef9073a990ea7b7c3e" [7]=> string(54) "write f2ef5060dee156ef9073a990ea7b7c3e: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: f2ef5060dee156ef9073a990ea7b7c3e" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read f2ef5060dee156ef9073a990ea7b7c3e" [13]=> string(40) "destroy f2ef5060dee156ef9073a990ea7b7c3e" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.5
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 8603caff57615281e61c8a49ed2277b5" [4]=> string(52) "current session_id: 8603caff57615281e61c8a49ed2277b5" [5]=> string(40) "destroy 8603caff57615281e61c8a49ed2277b5" [6]=> string(52) "current session_id: 3188f0d92f97efdc2fcffae730dfd94e" [7]=> string(54) "write 3188f0d92f97efdc2fcffae730dfd94e: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 3188f0d92f97efdc2fcffae730dfd94e" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 3188f0d92f97efdc2fcffae730dfd94e" [13]=> string(40) "destroy 3188f0d92f97efdc2fcffae730dfd94e" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.4
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read ecc9bf392f48aa6a0fd475a793e49291" [4]=> string(52) "current session_id: ecc9bf392f48aa6a0fd475a793e49291" [5]=> string(40) "destroy ecc9bf392f48aa6a0fd475a793e49291" [6]=> string(52) "current session_id: baeb505a3a77a8b25ed5d75ff7a78071" [7]=> string(54) "write baeb505a3a77a8b25ed5d75ff7a78071: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: baeb505a3a77a8b25ed5d75ff7a78071" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read baeb505a3a77a8b25ed5d75ff7a78071" [13]=> string(40) "destroy baeb505a3a77a8b25ed5d75ff7a78071" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.3
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 5e3f5cedef3903b4b4ce7eab98a7945c" [4]=> string(52) "current session_id: 5e3f5cedef3903b4b4ce7eab98a7945c" [5]=> string(40) "destroy 5e3f5cedef3903b4b4ce7eab98a7945c" [6]=> string(52) "current session_id: fcbc38cbd1a6f32e27c0b3a2584af046" [7]=> string(54) "write fcbc38cbd1a6f32e27c0b3a2584af046: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: fcbc38cbd1a6f32e27c0b3a2584af046" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read fcbc38cbd1a6f32e27c0b3a2584af046" [13]=> string(40) "destroy fcbc38cbd1a6f32e27c0b3a2584af046" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.2
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read cda349795da4007ba0ebf2be13164cc5" [4]=> string(52) "current session_id: cda349795da4007ba0ebf2be13164cc5" [5]=> string(40) "destroy cda349795da4007ba0ebf2be13164cc5" [6]=> string(52) "current session_id: 2477defdfedce1668ecdd5f7969ea002" [7]=> string(54) "write 2477defdfedce1668ecdd5f7969ea002: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 2477defdfedce1668ecdd5f7969ea002" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 2477defdfedce1668ecdd5f7969ea002" [13]=> string(40) "destroy 2477defdfedce1668ecdd5f7969ea002" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.1
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 7f8eaae79eb92f14934ab0d68af134f8" [4]=> string(52) "current session_id: 7f8eaae79eb92f14934ab0d68af134f8" [5]=> string(40) "destroy 7f8eaae79eb92f14934ab0d68af134f8" [6]=> string(52) "current session_id: 15f3fc930b715c322edb435fe6cccc37" [7]=> string(54) "write 15f3fc930b715c322edb435fe6cccc37: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 15f3fc930b715c322edb435fe6cccc37" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 15f3fc930b715c322edb435fe6cccc37" [13]=> string(40) "destroy 15f3fc930b715c322edb435fe6cccc37" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.4.0
array(22) { [0]=> string(19) "session_status(): 1" [1]=> string(23) "isset($_SESSION): false" [2]=> string(14) "open PHPSESSID" [3]=> string(37) "read 5e3d5e7a9719fd6b397382a6f9852b47" [4]=> string(52) "current session_id: 5e3d5e7a9719fd6b397382a6f9852b47" [5]=> string(40) "destroy 5e3d5e7a9719fd6b397382a6f9852b47" [6]=> string(52) "current session_id: 42476090808b56191e3acde769c43788" [7]=> string(54) "write 42476090808b56191e3acde769c43788: foo|s:3:"bar";" [8]=> string(5) "close" [9]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [10]=> string(56) "session_id after close: 42476090808b56191e3acde769c43788" [11]=> string(14) "open PHPSESSID" [12]=> string(37) "read 42476090808b56191e3acde769c43788" [13]=> string(40) "destroy 42476090808b56191e3acde769c43788" [14]=> string(5) "close" [15]=> string(34) "$_SESSION after destroy: array ( )" [16]=> string(9) "array ( )" [17]=> string(22) "current session_id: ''" [18]=> string(14) "open PHPSESSID" [19]=> string(24) "read explicit-session-id" [20]=> string(42) "write explicit-session-id: john|s:3:"doe";" [21]=> string(5) "close" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/ol3GF 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/ol3GF on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/ol3GF 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/ol3GF on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/ol3GF 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/ol3GF 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/ol3GF on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/ol3GF on line 4
Process exited with code 255.

preferences:
265.38 ms | 401 KiB | 350 Q