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: ' . session_id(); 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.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/AWlCT 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/AWlCT 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/AWlCT 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/AWlCT 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/AWlCT 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/AWlCT on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/AWlCT on line 48 Warning: session_start(): Session cannot be started after headers have already been sent in /in/AWlCT on line 53 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/AWlCT on line 58 Warning: session_start(): Session cannot be started after headers have already been sent in /in/AWlCT on line 65 Warning: session_destroy(): Trying to destroy uninitialized session in /in/AWlCT on line 66 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/AWlCT on line 72 Warning: session_start(): Session cannot be started after headers have already been sent in /in/AWlCT on line 73 array(10) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(20) "current session_id: " [4]=> string(20) "current session_id: " [5]=> string(73) "$_SESSION after close: array ( 'before' => 'start', 'foo' => 'bar', )" [6]=> string(24) "session_id after close: " [7]=> string(75) "$_SESSION after destroy: array ( 'before' => 'start', 'foo' => 'bar', )" [8]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [9]=> 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/AWlCT:53 Stack trace: #0 /in/AWlCT(53): session_start() #1 {main} thrown in /in/AWlCT on line 53 array(4) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" }
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33
Warning: session_start(): Session callback expects true/false return value in /in/AWlCT on line 53 Warning: session_start(): Session callback expects true/false return value in /in/AWlCT on line 53 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/AWlCT on line 53 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/AWlCT on line 58 Warning: session_start(): Cannot start session when headers already sent in /in/AWlCT on line 65 Warning: session_destroy(): Trying to destroy uninitialized session in /in/AWlCT on line 66 Warning: session_id(): Cannot change session id when headers already sent in /in/AWlCT on line 72 Warning: session_start(): Cannot start session when headers already sent in /in/AWlCT on line 73 array(12) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(5) "close" [5]=> string(20) "current session_id: " [6]=> string(20) "current session_id: " [7]=> string(73) "$_SESSION after close: array ( 'before' => 'start', 'foo' => 'bar', )" [8]=> string(24) "session_id after close: " [9]=> string(75) "$_SESSION after destroy: array ( 'before' => 'start', 'foo' => 'bar', )" [10]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [11]=> string(22) "current session_id: ''" }
Output for 7.1.0 - 7.1.20
Warning: session_start(): Session callback expects true/false return value in /in/AWlCT on line 53 Warning: session_start(): Session callback expects true/false return value in /in/AWlCT on line 53 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/AWlCT on line 53
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/AWlCT on line 53 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/AWlCT on line 53 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(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read f2a0de30f8eb174a078ae1343d58b576" [5]=> string(52) "current session_id: f2a0de30f8eb174a078ae1343d58b576" [6]=> string(40) "destroy f2a0de30f8eb174a078ae1343d58b576" [7]=> string(52) "current session_id: c4b85b69100699f49dd52db8ed90f246" [8]=> string(54) "write c4b85b69100699f49dd52db8ed90f246: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: c4b85b69100699f49dd52db8ed90f246" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read c4b85b69100699f49dd52db8ed90f246" [14]=> string(40) "destroy c4b85b69100699f49dd52db8ed90f246" [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.6.21
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 1acb48eec0a20c749b2c7df71e13c908" [5]=> string(52) "current session_id: 1acb48eec0a20c749b2c7df71e13c908" [6]=> string(40) "destroy 1acb48eec0a20c749b2c7df71e13c908" [7]=> string(52) "current session_id: 407c8be6ecf1c59cb89d49b302df6346" [8]=> string(54) "write 407c8be6ecf1c59cb89d49b302df6346: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 407c8be6ecf1c59cb89d49b302df6346" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 407c8be6ecf1c59cb89d49b302df6346" [14]=> string(40) "destroy 407c8be6ecf1c59cb89d49b302df6346" [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.6.20
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 7dc17c9c4bbf809458da6aa9103a6bf2" [5]=> string(52) "current session_id: 7dc17c9c4bbf809458da6aa9103a6bf2" [6]=> string(40) "destroy 7dc17c9c4bbf809458da6aa9103a6bf2" [7]=> string(52) "current session_id: b2b5853299a662b73ea242dc41e75a4b" [8]=> string(54) "write b2b5853299a662b73ea242dc41e75a4b: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: b2b5853299a662b73ea242dc41e75a4b" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read b2b5853299a662b73ea242dc41e75a4b" [14]=> string(40) "destroy b2b5853299a662b73ea242dc41e75a4b" [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.6.19
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 6b0cfb90a5653fa5a265cb838fc9ac4c" [5]=> string(52) "current session_id: 6b0cfb90a5653fa5a265cb838fc9ac4c" [6]=> string(40) "destroy 6b0cfb90a5653fa5a265cb838fc9ac4c" [7]=> string(52) "current session_id: 9caa17978237463930c24fddfe95380d" [8]=> string(54) "write 9caa17978237463930c24fddfe95380d: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 9caa17978237463930c24fddfe95380d" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 9caa17978237463930c24fddfe95380d" [14]=> string(40) "destroy 9caa17978237463930c24fddfe95380d" [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.6.18
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read e4c274e1de1cb4f108cb50b0fee406d2" [5]=> string(52) "current session_id: e4c274e1de1cb4f108cb50b0fee406d2" [6]=> string(40) "destroy e4c274e1de1cb4f108cb50b0fee406d2" [7]=> string(52) "current session_id: 530c0d17be9c6cb849f7622bfd693d24" [8]=> string(54) "write 530c0d17be9c6cb849f7622bfd693d24: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 530c0d17be9c6cb849f7622bfd693d24" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 530c0d17be9c6cb849f7622bfd693d24" [14]=> string(40) "destroy 530c0d17be9c6cb849f7622bfd693d24" [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.6.17
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read ad9f9e03bf0a513d7428a33161cba264" [5]=> string(52) "current session_id: ad9f9e03bf0a513d7428a33161cba264" [6]=> string(40) "destroy ad9f9e03bf0a513d7428a33161cba264" [7]=> string(52) "current session_id: 2d4e30cfcc1b02d111f2bc415f262b4e" [8]=> string(54) "write 2d4e30cfcc1b02d111f2bc415f262b4e: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 2d4e30cfcc1b02d111f2bc415f262b4e" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 2d4e30cfcc1b02d111f2bc415f262b4e" [14]=> string(40) "destroy 2d4e30cfcc1b02d111f2bc415f262b4e" [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.6.16
array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 9fa75de0d284a146c29059e8d0e19113" [5]=> string(52) "current session_id: 9fa75de0d284a146c29059e8d0e19113" [6]=> string(40) "destroy 9fa75de0d284a146c29059e8d0e19113" [7]=> string(52) "current session_id: 3e679b8c12213e75a6055848daeac118" [8]=> string(54) "write 3e679b8c12213e75a6055848daeac118: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 3e679b8c12213e75a6055848daeac118" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 3e679b8c12213e75a6055848daeac118" [14]=> string(7) "gc 1440" [15]=> string(40) "destroy 3e679b8c12213e75a6055848daeac118" [16]=> string(5) "close" [17]=> string(34) "$_SESSION after destroy: array ( )" [18]=> string(9) "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
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 8f6cc5c3437c403db41bf56a8ff6da72" [5]=> string(52) "current session_id: 8f6cc5c3437c403db41bf56a8ff6da72" [6]=> string(40) "destroy 8f6cc5c3437c403db41bf56a8ff6da72" [7]=> string(52) "current session_id: 8cdd54dd2ca827d9749fc101622b30db" [8]=> string(54) "write 8cdd54dd2ca827d9749fc101622b30db: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 8cdd54dd2ca827d9749fc101622b30db" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 8cdd54dd2ca827d9749fc101622b30db" [14]=> string(40) "destroy 8cdd54dd2ca827d9749fc101622b30db" [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.6.14
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 117848f883bc755281af40a2b400480b" [5]=> string(52) "current session_id: 117848f883bc755281af40a2b400480b" [6]=> string(40) "destroy 117848f883bc755281af40a2b400480b" [7]=> string(52) "current session_id: 890ba1714c2c275503282966b99c2172" [8]=> string(54) "write 890ba1714c2c275503282966b99c2172: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 890ba1714c2c275503282966b99c2172" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 890ba1714c2c275503282966b99c2172" [14]=> string(40) "destroy 890ba1714c2c275503282966b99c2172" [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.6.13
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read f9370133879f895a7edb5e97ab68b4da" [5]=> string(52) "current session_id: f9370133879f895a7edb5e97ab68b4da" [6]=> string(40) "destroy f9370133879f895a7edb5e97ab68b4da" [7]=> string(52) "current session_id: b9b3b7039ca66a4600b35345e70711ee" [8]=> string(54) "write b9b3b7039ca66a4600b35345e70711ee: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: b9b3b7039ca66a4600b35345e70711ee" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read b9b3b7039ca66a4600b35345e70711ee" [14]=> string(40) "destroy b9b3b7039ca66a4600b35345e70711ee" [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.6.12
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 0b0cccbe353e92fde7a4668135155207" [5]=> string(52) "current session_id: 0b0cccbe353e92fde7a4668135155207" [6]=> string(40) "destroy 0b0cccbe353e92fde7a4668135155207" [7]=> string(52) "current session_id: 643fc9432d8ce425ec7c507a8d25fa55" [8]=> string(54) "write 643fc9432d8ce425ec7c507a8d25fa55: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 643fc9432d8ce425ec7c507a8d25fa55" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 643fc9432d8ce425ec7c507a8d25fa55" [14]=> string(40) "destroy 643fc9432d8ce425ec7c507a8d25fa55" [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.6.11
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 625509fcd27f0c076358ab43f15d1988" [5]=> string(52) "current session_id: 625509fcd27f0c076358ab43f15d1988" [6]=> string(40) "destroy 625509fcd27f0c076358ab43f15d1988" [7]=> string(52) "current session_id: 6436a6ca5e60fab3f529d9f8cf427108" [8]=> string(54) "write 6436a6ca5e60fab3f529d9f8cf427108: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 6436a6ca5e60fab3f529d9f8cf427108" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 6436a6ca5e60fab3f529d9f8cf427108" [14]=> string(40) "destroy 6436a6ca5e60fab3f529d9f8cf427108" [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.6.10
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 6667094a701b03dfb4e90ae2fe5c4815" [5]=> string(52) "current session_id: 6667094a701b03dfb4e90ae2fe5c4815" [6]=> string(40) "destroy 6667094a701b03dfb4e90ae2fe5c4815" [7]=> string(52) "current session_id: 90ee25bca561877f51fb0928c5e16d8b" [8]=> string(54) "write 90ee25bca561877f51fb0928c5e16d8b: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 90ee25bca561877f51fb0928c5e16d8b" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 90ee25bca561877f51fb0928c5e16d8b" [14]=> string(40) "destroy 90ee25bca561877f51fb0928c5e16d8b" [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.6.9
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 92c4e9e6d56c5bbc01e90689806da820" [5]=> string(52) "current session_id: 92c4e9e6d56c5bbc01e90689806da820" [6]=> string(40) "destroy 92c4e9e6d56c5bbc01e90689806da820" [7]=> string(52) "current session_id: 4d0bd1a92a913fede99a82c80b68677d" [8]=> string(54) "write 4d0bd1a92a913fede99a82c80b68677d: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 4d0bd1a92a913fede99a82c80b68677d" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 4d0bd1a92a913fede99a82c80b68677d" [14]=> string(40) "destroy 4d0bd1a92a913fede99a82c80b68677d" [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.6.8
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 677f99ae282d579e3df03ebb259d9fd5" [5]=> string(52) "current session_id: 677f99ae282d579e3df03ebb259d9fd5" [6]=> string(40) "destroy 677f99ae282d579e3df03ebb259d9fd5" [7]=> string(52) "current session_id: 980d18336c841957c49c327cf5dbc36f" [8]=> string(54) "write 980d18336c841957c49c327cf5dbc36f: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 980d18336c841957c49c327cf5dbc36f" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 980d18336c841957c49c327cf5dbc36f" [14]=> string(40) "destroy 980d18336c841957c49c327cf5dbc36f" [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.5.35
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read a66024a9eb075d41aada8ed5077a61f4" [5]=> string(52) "current session_id: a66024a9eb075d41aada8ed5077a61f4" [6]=> string(40) "destroy a66024a9eb075d41aada8ed5077a61f4" [7]=> string(52) "current session_id: db3d5e842577984b2da499447124a2a1" [8]=> string(54) "write db3d5e842577984b2da499447124a2a1: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: db3d5e842577984b2da499447124a2a1" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read db3d5e842577984b2da499447124a2a1" [14]=> string(40) "destroy db3d5e842577984b2da499447124a2a1" [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.5.34
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 6501a5bf994f9994957fc154e6e9fd94" [5]=> string(52) "current session_id: 6501a5bf994f9994957fc154e6e9fd94" [6]=> string(40) "destroy 6501a5bf994f9994957fc154e6e9fd94" [7]=> string(52) "current session_id: 4d04c2598a701afb6bdd4afe74cdb6c0" [8]=> string(54) "write 4d04c2598a701afb6bdd4afe74cdb6c0: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 4d04c2598a701afb6bdd4afe74cdb6c0" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 4d04c2598a701afb6bdd4afe74cdb6c0" [14]=> string(40) "destroy 4d04c2598a701afb6bdd4afe74cdb6c0" [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.5.33
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 7f44bd47d8f1af9f3c3b00be95a59257" [5]=> string(52) "current session_id: 7f44bd47d8f1af9f3c3b00be95a59257" [6]=> string(40) "destroy 7f44bd47d8f1af9f3c3b00be95a59257" [7]=> string(52) "current session_id: 4d780cac75ec69599a5fa68211c98e02" [8]=> string(54) "write 4d780cac75ec69599a5fa68211c98e02: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 4d780cac75ec69599a5fa68211c98e02" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 4d780cac75ec69599a5fa68211c98e02" [14]=> string(40) "destroy 4d780cac75ec69599a5fa68211c98e02" [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.5.32
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 723176cfd88b2ea930e957641f76b4d4" [5]=> string(52) "current session_id: 723176cfd88b2ea930e957641f76b4d4" [6]=> string(40) "destroy 723176cfd88b2ea930e957641f76b4d4" [7]=> string(52) "current session_id: f92f5718b480a98990cc17fabc4e0936" [8]=> string(54) "write f92f5718b480a98990cc17fabc4e0936: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: f92f5718b480a98990cc17fabc4e0936" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read f92f5718b480a98990cc17fabc4e0936" [14]=> string(40) "destroy f92f5718b480a98990cc17fabc4e0936" [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.5.31
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read cf43286dd69487b2e952b21c87c15b20" [5]=> string(52) "current session_id: cf43286dd69487b2e952b21c87c15b20" [6]=> string(40) "destroy cf43286dd69487b2e952b21c87c15b20" [7]=> string(52) "current session_id: eeffbc135c42173fd285f530391b34e5" [8]=> string(54) "write eeffbc135c42173fd285f530391b34e5: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: eeffbc135c42173fd285f530391b34e5" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read eeffbc135c42173fd285f530391b34e5" [14]=> string(40) "destroy eeffbc135c42173fd285f530391b34e5" [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.5.30
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 721127e962600d543b17721248613a14" [5]=> string(52) "current session_id: 721127e962600d543b17721248613a14" [6]=> string(40) "destroy 721127e962600d543b17721248613a14" [7]=> string(52) "current session_id: 2d384031ac544f65149fce5fe0c79679" [8]=> string(54) "write 2d384031ac544f65149fce5fe0c79679: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 2d384031ac544f65149fce5fe0c79679" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 2d384031ac544f65149fce5fe0c79679" [14]=> string(40) "destroy 2d384031ac544f65149fce5fe0c79679" [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.5.29
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 083980fe9f346ecbc95a73d1296aaede" [5]=> string(52) "current session_id: 083980fe9f346ecbc95a73d1296aaede" [6]=> string(40) "destroy 083980fe9f346ecbc95a73d1296aaede" [7]=> string(52) "current session_id: 0e0df77e37b46c67ea131ffa38a710a0" [8]=> string(54) "write 0e0df77e37b46c67ea131ffa38a710a0: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 0e0df77e37b46c67ea131ffa38a710a0" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 0e0df77e37b46c67ea131ffa38a710a0" [14]=> string(40) "destroy 0e0df77e37b46c67ea131ffa38a710a0" [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.5.28
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 28ca0cda0fbe9cfe91ef4f7111b52c23" [5]=> string(52) "current session_id: 28ca0cda0fbe9cfe91ef4f7111b52c23" [6]=> string(40) "destroy 28ca0cda0fbe9cfe91ef4f7111b52c23" [7]=> string(52) "current session_id: 936a495991716c2b207aa4efa57c91c3" [8]=> string(54) "write 936a495991716c2b207aa4efa57c91c3: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 936a495991716c2b207aa4efa57c91c3" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 936a495991716c2b207aa4efa57c91c3" [14]=> string(40) "destroy 936a495991716c2b207aa4efa57c91c3" [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.5.27
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read d8c9a3207ae93bcaeae7779d9a4e723b" [5]=> string(52) "current session_id: d8c9a3207ae93bcaeae7779d9a4e723b" [6]=> string(40) "destroy d8c9a3207ae93bcaeae7779d9a4e723b" [7]=> string(52) "current session_id: 2938eaf7b4280c9349a7228213183e0f" [8]=> string(54) "write 2938eaf7b4280c9349a7228213183e0f: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 2938eaf7b4280c9349a7228213183e0f" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 2938eaf7b4280c9349a7228213183e0f" [14]=> string(40) "destroy 2938eaf7b4280c9349a7228213183e0f" [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.5.26
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 11f31ba087e5a00fcb8e1750d811ca42" [5]=> string(52) "current session_id: 11f31ba087e5a00fcb8e1750d811ca42" [6]=> string(40) "destroy 11f31ba087e5a00fcb8e1750d811ca42" [7]=> string(52) "current session_id: 60e97580ca2b5a45da23e02dfc6f1bb0" [8]=> string(54) "write 60e97580ca2b5a45da23e02dfc6f1bb0: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 60e97580ca2b5a45da23e02dfc6f1bb0" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 60e97580ca2b5a45da23e02dfc6f1bb0" [14]=> string(40) "destroy 60e97580ca2b5a45da23e02dfc6f1bb0" [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.5.25
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 3bdff35060d397af21cc697178053cd9" [5]=> string(52) "current session_id: 3bdff35060d397af21cc697178053cd9" [6]=> string(40) "destroy 3bdff35060d397af21cc697178053cd9" [7]=> string(52) "current session_id: a37500384d312f6a169e63e176b9e3ad" [8]=> string(54) "write a37500384d312f6a169e63e176b9e3ad: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: a37500384d312f6a169e63e176b9e3ad" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read a37500384d312f6a169e63e176b9e3ad" [14]=> string(40) "destroy a37500384d312f6a169e63e176b9e3ad" [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.5.24
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read a74932b4c368c83a7512e0e3aec38607" [5]=> string(52) "current session_id: a74932b4c368c83a7512e0e3aec38607" [6]=> string(40) "destroy a74932b4c368c83a7512e0e3aec38607" [7]=> string(52) "current session_id: a3fc994e2c638e03f5b3a401b192d63a" [8]=> string(54) "write a3fc994e2c638e03f5b3a401b192d63a: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: a3fc994e2c638e03f5b3a401b192d63a" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read a3fc994e2c638e03f5b3a401b192d63a" [14]=> string(40) "destroy a3fc994e2c638e03f5b3a401b192d63a" [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.45
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read df17d572747c5d1b4e58726340f0320b" [5]=> string(52) "current session_id: df17d572747c5d1b4e58726340f0320b" [6]=> string(40) "destroy df17d572747c5d1b4e58726340f0320b" [7]=> string(52) "current session_id: bf50fa7f1126e82da54c1161e9f44a47" [8]=> string(54) "write bf50fa7f1126e82da54c1161e9f44a47: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: bf50fa7f1126e82da54c1161e9f44a47" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read bf50fa7f1126e82da54c1161e9f44a47" [14]=> string(40) "destroy bf50fa7f1126e82da54c1161e9f44a47" [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.44
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read af365a7493c2d4c6870c3be6ada12c28" [5]=> string(52) "current session_id: af365a7493c2d4c6870c3be6ada12c28" [6]=> string(40) "destroy af365a7493c2d4c6870c3be6ada12c28" [7]=> string(52) "current session_id: ad52f8f2bda757ae6703791a330a2505" [8]=> string(54) "write ad52f8f2bda757ae6703791a330a2505: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: ad52f8f2bda757ae6703791a330a2505" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read ad52f8f2bda757ae6703791a330a2505" [14]=> string(40) "destroy ad52f8f2bda757ae6703791a330a2505" [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.43
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 768dba562e053fc6cbb9feb467280815" [5]=> string(52) "current session_id: 768dba562e053fc6cbb9feb467280815" [6]=> string(40) "destroy 768dba562e053fc6cbb9feb467280815" [7]=> string(52) "current session_id: 965438f5d5b249d147abd9c1e80eaf26" [8]=> string(54) "write 965438f5d5b249d147abd9c1e80eaf26: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 965438f5d5b249d147abd9c1e80eaf26" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 965438f5d5b249d147abd9c1e80eaf26" [14]=> string(40) "destroy 965438f5d5b249d147abd9c1e80eaf26" [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.42
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 85d6ae4e8a0dcd76059f321b19e26be1" [5]=> string(52) "current session_id: 85d6ae4e8a0dcd76059f321b19e26be1" [6]=> string(40) "destroy 85d6ae4e8a0dcd76059f321b19e26be1" [7]=> string(52) "current session_id: e4c32e790f8d01a41a840c799af609d0" [8]=> string(54) "write e4c32e790f8d01a41a840c799af609d0: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: e4c32e790f8d01a41a840c799af609d0" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read e4c32e790f8d01a41a840c799af609d0" [14]=> string(40) "destroy e4c32e790f8d01a41a840c799af609d0" [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.41
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 5798c294ac2b3ced4429db3bf9e83649" [5]=> string(52) "current session_id: 5798c294ac2b3ced4429db3bf9e83649" [6]=> string(40) "destroy 5798c294ac2b3ced4429db3bf9e83649" [7]=> string(52) "current session_id: 18511e78e2e25a9f4905b0fe6288c0cb" [8]=> string(54) "write 18511e78e2e25a9f4905b0fe6288c0cb: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 18511e78e2e25a9f4905b0fe6288c0cb" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 18511e78e2e25a9f4905b0fe6288c0cb" [14]=> string(40) "destroy 18511e78e2e25a9f4905b0fe6288c0cb" [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.40
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read ddf9b6b277772e1a386721402332d9b1" [5]=> string(52) "current session_id: ddf9b6b277772e1a386721402332d9b1" [6]=> string(40) "destroy ddf9b6b277772e1a386721402332d9b1" [7]=> string(52) "current session_id: 9f7c8393de36b0d48eef00a9a57fc0ac" [8]=> string(54) "write 9f7c8393de36b0d48eef00a9a57fc0ac: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 9f7c8393de36b0d48eef00a9a57fc0ac" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 9f7c8393de36b0d48eef00a9a57fc0ac" [14]=> string(40) "destroy 9f7c8393de36b0d48eef00a9a57fc0ac" [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.39
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 86defaef6f56d14bdca59bb7d2965776" [5]=> string(52) "current session_id: 86defaef6f56d14bdca59bb7d2965776" [6]=> string(40) "destroy 86defaef6f56d14bdca59bb7d2965776" [7]=> string(52) "current session_id: 5b8e1fd53a9b0c1bde499a26b509be7c" [8]=> string(54) "write 5b8e1fd53a9b0c1bde499a26b509be7c: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 5b8e1fd53a9b0c1bde499a26b509be7c" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 5b8e1fd53a9b0c1bde499a26b509be7c" [14]=> string(40) "destroy 5b8e1fd53a9b0c1bde499a26b509be7c" [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.38
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read df6c4d6f3d1d9c1f6e340788acd5ef27" [5]=> string(52) "current session_id: df6c4d6f3d1d9c1f6e340788acd5ef27" [6]=> string(40) "destroy df6c4d6f3d1d9c1f6e340788acd5ef27" [7]=> string(52) "current session_id: 8e0d2fac9aca6785dac112fb72fbb2cd" [8]=> string(54) "write 8e0d2fac9aca6785dac112fb72fbb2cd: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 8e0d2fac9aca6785dac112fb72fbb2cd" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 8e0d2fac9aca6785dac112fb72fbb2cd" [14]=> string(40) "destroy 8e0d2fac9aca6785dac112fb72fbb2cd" [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.37
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read c66a1f2d88a78ddcab0c420f8e5be34e" [5]=> string(52) "current session_id: c66a1f2d88a78ddcab0c420f8e5be34e" [6]=> string(40) "destroy c66a1f2d88a78ddcab0c420f8e5be34e" [7]=> string(52) "current session_id: 335ad63672b2f3c73d277147b87ff0c7" [8]=> string(54) "write 335ad63672b2f3c73d277147b87ff0c7: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 335ad63672b2f3c73d277147b87ff0c7" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 335ad63672b2f3c73d277147b87ff0c7" [14]=> string(40) "destroy 335ad63672b2f3c73d277147b87ff0c7" [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.36
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 5c1e97a94b429866b57d242698f7a88d" [5]=> string(52) "current session_id: 5c1e97a94b429866b57d242698f7a88d" [6]=> string(40) "destroy 5c1e97a94b429866b57d242698f7a88d" [7]=> string(52) "current session_id: 23a87f1709243f05fa6bc058387a61ce" [8]=> string(54) "write 23a87f1709243f05fa6bc058387a61ce: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 23a87f1709243f05fa6bc058387a61ce" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 23a87f1709243f05fa6bc058387a61ce" [14]=> string(40) "destroy 23a87f1709243f05fa6bc058387a61ce" [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(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 33af9d1fc273b7f80084848b19e02c55" [5]=> string(52) "current session_id: 33af9d1fc273b7f80084848b19e02c55" [6]=> string(40) "destroy 33af9d1fc273b7f80084848b19e02c55" [7]=> string(52) "current session_id: 428bea062f06168e2a0df9b868d71dc5" [8]=> string(54) "write 428bea062f06168e2a0df9b868d71dc5: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 428bea062f06168e2a0df9b868d71dc5" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 428bea062f06168e2a0df9b868d71dc5" [14]=> string(40) "destroy 428bea062f06168e2a0df9b868d71dc5" [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.34
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 6bd718fdb79830732f659e9b3c1dbb2e" [5]=> string(52) "current session_id: 6bd718fdb79830732f659e9b3c1dbb2e" [6]=> string(40) "destroy 6bd718fdb79830732f659e9b3c1dbb2e" [7]=> string(52) "current session_id: 68c39bd9f63add1a5fcea70ad7ab312c" [8]=> string(54) "write 68c39bd9f63add1a5fcea70ad7ab312c: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 68c39bd9f63add1a5fcea70ad7ab312c" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 68c39bd9f63add1a5fcea70ad7ab312c" [14]=> string(40) "destroy 68c39bd9f63add1a5fcea70ad7ab312c" [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.32
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read ae0ec4d39ed18500e4ebf6900fd3f159" [5]=> string(52) "current session_id: ae0ec4d39ed18500e4ebf6900fd3f159" [6]=> string(40) "destroy ae0ec4d39ed18500e4ebf6900fd3f159" [7]=> string(52) "current session_id: 9edfb6f58b1619e8b7374cb83205bf3b" [8]=> string(54) "write 9edfb6f58b1619e8b7374cb83205bf3b: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 9edfb6f58b1619e8b7374cb83205bf3b" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 9edfb6f58b1619e8b7374cb83205bf3b" [14]=> string(40) "destroy 9edfb6f58b1619e8b7374cb83205bf3b" [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.31
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read ff26f602e128831ed45328684a765867" [5]=> string(52) "current session_id: ff26f602e128831ed45328684a765867" [6]=> string(40) "destroy ff26f602e128831ed45328684a765867" [7]=> string(52) "current session_id: 07b3761e733bd74fc45a8de7a3e03bae" [8]=> string(54) "write 07b3761e733bd74fc45a8de7a3e03bae: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 07b3761e733bd74fc45a8de7a3e03bae" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 07b3761e733bd74fc45a8de7a3e03bae" [14]=> string(40) "destroy 07b3761e733bd74fc45a8de7a3e03bae" [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.30
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 2138be24cb7a3d2d51c93428ec2b86ba" [5]=> string(52) "current session_id: 2138be24cb7a3d2d51c93428ec2b86ba" [6]=> string(40) "destroy 2138be24cb7a3d2d51c93428ec2b86ba" [7]=> string(52) "current session_id: 0a1e76cc4d02b3260c1279c815f58c9c" [8]=> string(54) "write 0a1e76cc4d02b3260c1279c815f58c9c: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 0a1e76cc4d02b3260c1279c815f58c9c" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 0a1e76cc4d02b3260c1279c815f58c9c" [14]=> string(40) "destroy 0a1e76cc4d02b3260c1279c815f58c9c" [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.29
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read d5b8e1349a99c75ead48c596f531bb76" [5]=> string(52) "current session_id: d5b8e1349a99c75ead48c596f531bb76" [6]=> string(40) "destroy d5b8e1349a99c75ead48c596f531bb76" [7]=> string(52) "current session_id: e31ff5c9683d12e1de7ef69d3593c809" [8]=> string(54) "write e31ff5c9683d12e1de7ef69d3593c809: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: e31ff5c9683d12e1de7ef69d3593c809" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read e31ff5c9683d12e1de7ef69d3593c809" [14]=> string(40) "destroy e31ff5c9683d12e1de7ef69d3593c809" [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.28
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read f433d2de41be90aa79e1d5a52416b11b" [5]=> string(52) "current session_id: f433d2de41be90aa79e1d5a52416b11b" [6]=> string(40) "destroy f433d2de41be90aa79e1d5a52416b11b" [7]=> string(52) "current session_id: fd1ae8b7d3872a1d94f79efd7e2cf74f" [8]=> string(54) "write fd1ae8b7d3872a1d94f79efd7e2cf74f: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: fd1ae8b7d3872a1d94f79efd7e2cf74f" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read fd1ae8b7d3872a1d94f79efd7e2cf74f" [14]=> string(40) "destroy fd1ae8b7d3872a1d94f79efd7e2cf74f" [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.27
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 57c90ae246b7515a1111e6f7f38bc6e4" [5]=> string(52) "current session_id: 57c90ae246b7515a1111e6f7f38bc6e4" [6]=> string(40) "destroy 57c90ae246b7515a1111e6f7f38bc6e4" [7]=> string(52) "current session_id: 0be5b17a6c0773b8e53f816f7bbf1941" [8]=> string(54) "write 0be5b17a6c0773b8e53f816f7bbf1941: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 0be5b17a6c0773b8e53f816f7bbf1941" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 0be5b17a6c0773b8e53f816f7bbf1941" [14]=> string(40) "destroy 0be5b17a6c0773b8e53f816f7bbf1941" [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.26
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 9335e13c36fc5c36835cdeb2a1b22284" [5]=> string(52) "current session_id: 9335e13c36fc5c36835cdeb2a1b22284" [6]=> string(40) "destroy 9335e13c36fc5c36835cdeb2a1b22284" [7]=> string(52) "current session_id: 26d9b76fa2e0a3c0904b5d0ce0d63f27" [8]=> string(54) "write 26d9b76fa2e0a3c0904b5d0ce0d63f27: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 26d9b76fa2e0a3c0904b5d0ce0d63f27" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 26d9b76fa2e0a3c0904b5d0ce0d63f27" [14]=> string(40) "destroy 26d9b76fa2e0a3c0904b5d0ce0d63f27" [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.25
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read bc55e2b7c43c89a93a7e9b8a859bb0b2" [5]=> string(52) "current session_id: bc55e2b7c43c89a93a7e9b8a859bb0b2" [6]=> string(40) "destroy bc55e2b7c43c89a93a7e9b8a859bb0b2" [7]=> string(52) "current session_id: 90179e8ba171d95f2ab9127f8fd2a085" [8]=> string(54) "write 90179e8ba171d95f2ab9127f8fd2a085: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 90179e8ba171d95f2ab9127f8fd2a085" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 90179e8ba171d95f2ab9127f8fd2a085" [14]=> string(40) "destroy 90179e8ba171d95f2ab9127f8fd2a085" [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.24
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read c9ac58a3db045fb17c160e1194b024cf" [5]=> string(52) "current session_id: c9ac58a3db045fb17c160e1194b024cf" [6]=> string(40) "destroy c9ac58a3db045fb17c160e1194b024cf" [7]=> string(52) "current session_id: 695e75d5770bbc4db60ea8a28f863e07" [8]=> string(54) "write 695e75d5770bbc4db60ea8a28f863e07: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 695e75d5770bbc4db60ea8a28f863e07" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 695e75d5770bbc4db60ea8a28f863e07" [14]=> string(40) "destroy 695e75d5770bbc4db60ea8a28f863e07" [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.23
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read c1681d1885fbf56326d1d2ab76c56a0f" [5]=> string(52) "current session_id: c1681d1885fbf56326d1d2ab76c56a0f" [6]=> string(40) "destroy c1681d1885fbf56326d1d2ab76c56a0f" [7]=> string(52) "current session_id: ac6cd287ff4276985bcea9693f489685" [8]=> string(54) "write ac6cd287ff4276985bcea9693f489685: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: ac6cd287ff4276985bcea9693f489685" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read ac6cd287ff4276985bcea9693f489685" [14]=> string(40) "destroy ac6cd287ff4276985bcea9693f489685" [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.22
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 7eb803771765721694cdbbd14358165f" [5]=> string(52) "current session_id: 7eb803771765721694cdbbd14358165f" [6]=> string(40) "destroy 7eb803771765721694cdbbd14358165f" [7]=> string(52) "current session_id: fb9a8eb354ac887c9c200019ca220dba" [8]=> string(54) "write fb9a8eb354ac887c9c200019ca220dba: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: fb9a8eb354ac887c9c200019ca220dba" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read fb9a8eb354ac887c9c200019ca220dba" [14]=> string(40) "destroy fb9a8eb354ac887c9c200019ca220dba" [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.21
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 0096fb3ed0777d2fdb24696fe3545b96" [5]=> string(52) "current session_id: 0096fb3ed0777d2fdb24696fe3545b96" [6]=> string(40) "destroy 0096fb3ed0777d2fdb24696fe3545b96" [7]=> string(52) "current session_id: c0fc97a2a78c4170bd4d53dc46f9bfe3" [8]=> string(54) "write c0fc97a2a78c4170bd4d53dc46f9bfe3: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: c0fc97a2a78c4170bd4d53dc46f9bfe3" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read c0fc97a2a78c4170bd4d53dc46f9bfe3" [14]=> string(40) "destroy c0fc97a2a78c4170bd4d53dc46f9bfe3" [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.20
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 1076718f72dab198cd4ed977d4a03659" [5]=> string(52) "current session_id: 1076718f72dab198cd4ed977d4a03659" [6]=> string(40) "destroy 1076718f72dab198cd4ed977d4a03659" [7]=> string(52) "current session_id: 400ff6d938a3b181439de7f47ce1ec6e" [8]=> string(54) "write 400ff6d938a3b181439de7f47ce1ec6e: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 400ff6d938a3b181439de7f47ce1ec6e" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 400ff6d938a3b181439de7f47ce1ec6e" [14]=> string(40) "destroy 400ff6d938a3b181439de7f47ce1ec6e" [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.19
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 08de0bc719674e30a5127c69cbee646b" [5]=> string(52) "current session_id: 08de0bc719674e30a5127c69cbee646b" [6]=> string(40) "destroy 08de0bc719674e30a5127c69cbee646b" [7]=> string(52) "current session_id: b101572ac56d762f79f7f9f9d887770b" [8]=> string(54) "write b101572ac56d762f79f7f9f9d887770b: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: b101572ac56d762f79f7f9f9d887770b" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read b101572ac56d762f79f7f9f9d887770b" [14]=> string(40) "destroy b101572ac56d762f79f7f9f9d887770b" [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.18
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read cbbf59b442d48d909151cf8a71c6d029" [5]=> string(52) "current session_id: cbbf59b442d48d909151cf8a71c6d029" [6]=> string(40) "destroy cbbf59b442d48d909151cf8a71c6d029" [7]=> string(52) "current session_id: cc792fd6b5d20efe8b6362cd95fa15bc" [8]=> string(54) "write cc792fd6b5d20efe8b6362cd95fa15bc: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: cc792fd6b5d20efe8b6362cd95fa15bc" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read cc792fd6b5d20efe8b6362cd95fa15bc" [14]=> string(40) "destroy cc792fd6b5d20efe8b6362cd95fa15bc" [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.17
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 469bb4dc77ef99ae58b7b8fac2581213" [5]=> string(52) "current session_id: 469bb4dc77ef99ae58b7b8fac2581213" [6]=> string(40) "destroy 469bb4dc77ef99ae58b7b8fac2581213" [7]=> string(52) "current session_id: 1a6ef081088c9ff4318584f6a507199a" [8]=> string(54) "write 1a6ef081088c9ff4318584f6a507199a: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 1a6ef081088c9ff4318584f6a507199a" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 1a6ef081088c9ff4318584f6a507199a" [14]=> string(40) "destroy 1a6ef081088c9ff4318584f6a507199a" [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.16
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read c079dfeea2aa9af126c26fcc5d211620" [5]=> string(52) "current session_id: c079dfeea2aa9af126c26fcc5d211620" [6]=> string(40) "destroy c079dfeea2aa9af126c26fcc5d211620" [7]=> string(52) "current session_id: 939fded0b766ccfd699c49e1136a1174" [8]=> string(54) "write 939fded0b766ccfd699c49e1136a1174: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 939fded0b766ccfd699c49e1136a1174" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 939fded0b766ccfd699c49e1136a1174" [14]=> string(40) "destroy 939fded0b766ccfd699c49e1136a1174" [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.15
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read db440d53d4e51258ae17732c6d3026db" [5]=> string(52) "current session_id: db440d53d4e51258ae17732c6d3026db" [6]=> string(40) "destroy db440d53d4e51258ae17732c6d3026db" [7]=> string(52) "current session_id: 51f0e6ad821ad5bf6510d7d2f8525c5e" [8]=> string(54) "write 51f0e6ad821ad5bf6510d7d2f8525c5e: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 51f0e6ad821ad5bf6510d7d2f8525c5e" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 51f0e6ad821ad5bf6510d7d2f8525c5e" [14]=> string(40) "destroy 51f0e6ad821ad5bf6510d7d2f8525c5e" [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.14
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 07744cd0a9aa71934defd1a51dbbac5d" [5]=> string(52) "current session_id: 07744cd0a9aa71934defd1a51dbbac5d" [6]=> string(40) "destroy 07744cd0a9aa71934defd1a51dbbac5d" [7]=> string(52) "current session_id: f07698a2d567e097f2640faf0d2b4749" [8]=> string(54) "write f07698a2d567e097f2640faf0d2b4749: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: f07698a2d567e097f2640faf0d2b4749" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read f07698a2d567e097f2640faf0d2b4749" [14]=> string(40) "destroy f07698a2d567e097f2640faf0d2b4749" [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.13
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 264206511818adcbbf6bc0571fb7702e" [5]=> string(52) "current session_id: 264206511818adcbbf6bc0571fb7702e" [6]=> string(40) "destroy 264206511818adcbbf6bc0571fb7702e" [7]=> string(52) "current session_id: bc13932b667773fcd0f36b5c810cc65c" [8]=> string(54) "write bc13932b667773fcd0f36b5c810cc65c: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: bc13932b667773fcd0f36b5c810cc65c" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read bc13932b667773fcd0f36b5c810cc65c" [14]=> string(40) "destroy bc13932b667773fcd0f36b5c810cc65c" [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.12
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read a9393c4afd83c6597538a6075b3c7fa7" [5]=> string(52) "current session_id: a9393c4afd83c6597538a6075b3c7fa7" [6]=> string(40) "destroy a9393c4afd83c6597538a6075b3c7fa7" [7]=> string(52) "current session_id: 21b5a50dd4103772d7b8307fc3661a34" [8]=> string(54) "write 21b5a50dd4103772d7b8307fc3661a34: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 21b5a50dd4103772d7b8307fc3661a34" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 21b5a50dd4103772d7b8307fc3661a34" [14]=> string(40) "destroy 21b5a50dd4103772d7b8307fc3661a34" [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.11
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read ee8718f2cc3a3e262d8d3666d45eaeb0" [5]=> string(52) "current session_id: ee8718f2cc3a3e262d8d3666d45eaeb0" [6]=> string(40) "destroy ee8718f2cc3a3e262d8d3666d45eaeb0" [7]=> string(52) "current session_id: 32637292cdb7246207beb5397f89f345" [8]=> string(54) "write 32637292cdb7246207beb5397f89f345: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 32637292cdb7246207beb5397f89f345" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 32637292cdb7246207beb5397f89f345" [14]=> string(40) "destroy 32637292cdb7246207beb5397f89f345" [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.10
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read cd848adccf0e40c81910fe10d2728c05" [5]=> string(52) "current session_id: cd848adccf0e40c81910fe10d2728c05" [6]=> string(40) "destroy cd848adccf0e40c81910fe10d2728c05" [7]=> string(52) "current session_id: 17735a1cc59e6617d379e2b57c85e3a9" [8]=> string(54) "write 17735a1cc59e6617d379e2b57c85e3a9: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 17735a1cc59e6617d379e2b57c85e3a9" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 17735a1cc59e6617d379e2b57c85e3a9" [14]=> string(40) "destroy 17735a1cc59e6617d379e2b57c85e3a9" [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.9
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read d78ee9a7a4586aa9d6d5179785b3e120" [5]=> string(52) "current session_id: d78ee9a7a4586aa9d6d5179785b3e120" [6]=> string(40) "destroy d78ee9a7a4586aa9d6d5179785b3e120" [7]=> string(52) "current session_id: 8ac394bbef1f6585fb8d20a5a11099e5" [8]=> string(54) "write 8ac394bbef1f6585fb8d20a5a11099e5: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 8ac394bbef1f6585fb8d20a5a11099e5" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 8ac394bbef1f6585fb8d20a5a11099e5" [14]=> string(40) "destroy 8ac394bbef1f6585fb8d20a5a11099e5" [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.8
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 3b997da14016ce126ec0d96d4709190e" [5]=> string(52) "current session_id: 3b997da14016ce126ec0d96d4709190e" [6]=> string(40) "destroy 3b997da14016ce126ec0d96d4709190e" [7]=> string(52) "current session_id: ea2f51bf194c5f04c534b28df76a2ecd" [8]=> string(54) "write ea2f51bf194c5f04c534b28df76a2ecd: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: ea2f51bf194c5f04c534b28df76a2ecd" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read ea2f51bf194c5f04c534b28df76a2ecd" [14]=> string(40) "destroy ea2f51bf194c5f04c534b28df76a2ecd" [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.7
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 37b7c17387e8114aadc1c5f1c27eb68b" [5]=> string(52) "current session_id: 37b7c17387e8114aadc1c5f1c27eb68b" [6]=> string(40) "destroy 37b7c17387e8114aadc1c5f1c27eb68b" [7]=> string(52) "current session_id: 7300181bbf845538784a7668af8d392a" [8]=> string(54) "write 7300181bbf845538784a7668af8d392a: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 7300181bbf845538784a7668af8d392a" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 7300181bbf845538784a7668af8d392a" [14]=> string(40) "destroy 7300181bbf845538784a7668af8d392a" [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.6
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read ade4f9f804f4283ba60aadf4dc030714" [5]=> string(52) "current session_id: ade4f9f804f4283ba60aadf4dc030714" [6]=> string(40) "destroy ade4f9f804f4283ba60aadf4dc030714" [7]=> string(52) "current session_id: e69e4e58bbc2fd2cd7b2a66a4f60dd39" [8]=> string(54) "write e69e4e58bbc2fd2cd7b2a66a4f60dd39: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: e69e4e58bbc2fd2cd7b2a66a4f60dd39" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read e69e4e58bbc2fd2cd7b2a66a4f60dd39" [14]=> string(40) "destroy e69e4e58bbc2fd2cd7b2a66a4f60dd39" [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.5
array(24) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 5365deb738291da13a7372066b46d2ae" [5]=> string(52) "current session_id: 5365deb738291da13a7372066b46d2ae" [6]=> string(40) "destroy 5365deb738291da13a7372066b46d2ae" [7]=> string(52) "current session_id: 3c09ddfae06eb1f52397076738910358" [8]=> string(54) "write 3c09ddfae06eb1f52397076738910358: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 3c09ddfae06eb1f52397076738910358" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 3c09ddfae06eb1f52397076738910358" [14]=> string(40) "destroy 3c09ddfae06eb1f52397076738910358" [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(7) "gc 1440" [22]=> string(42) "write explicit-session-id: john|s:3:"doe";" [23]=> string(5) "close" }
Output for 5.4.4
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 035a04c6744a0d13f324740a541b8c4c" [5]=> string(52) "current session_id: 035a04c6744a0d13f324740a541b8c4c" [6]=> string(40) "destroy 035a04c6744a0d13f324740a541b8c4c" [7]=> string(52) "current session_id: 2d1540e408a13ae5ee01a60885c6c585" [8]=> string(54) "write 2d1540e408a13ae5ee01a60885c6c585: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 2d1540e408a13ae5ee01a60885c6c585" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 2d1540e408a13ae5ee01a60885c6c585" [14]=> string(40) "destroy 2d1540e408a13ae5ee01a60885c6c585" [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.3
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 30368394351bd707fbf3c2a3968feb1b" [5]=> string(52) "current session_id: 30368394351bd707fbf3c2a3968feb1b" [6]=> string(40) "destroy 30368394351bd707fbf3c2a3968feb1b" [7]=> string(52) "current session_id: f6807c12d60c31c291420af368533b1a" [8]=> string(54) "write f6807c12d60c31c291420af368533b1a: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: f6807c12d60c31c291420af368533b1a" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read f6807c12d60c31c291420af368533b1a" [14]=> string(40) "destroy f6807c12d60c31c291420af368533b1a" [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.2
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read d9a4c95b32c6f17fa7599c8df6f8b199" [5]=> string(52) "current session_id: d9a4c95b32c6f17fa7599c8df6f8b199" [6]=> string(40) "destroy d9a4c95b32c6f17fa7599c8df6f8b199" [7]=> string(52) "current session_id: 2443e469b888e38d4a36c3cea2cdaaa8" [8]=> string(54) "write 2443e469b888e38d4a36c3cea2cdaaa8: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 2443e469b888e38d4a36c3cea2cdaaa8" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 2443e469b888e38d4a36c3cea2cdaaa8" [14]=> string(40) "destroy 2443e469b888e38d4a36c3cea2cdaaa8" [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.1
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read 9ae4079a065835652b7f49c0903ba9f4" [5]=> string(52) "current session_id: 9ae4079a065835652b7f49c0903ba9f4" [6]=> string(40) "destroy 9ae4079a065835652b7f49c0903ba9f4" [7]=> string(52) "current session_id: 49e7ecd25105d8225c7fa610b93b984c" [8]=> string(54) "write 49e7ecd25105d8225c7fa610b93b984c: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: 49e7ecd25105d8225c7fa610b93b984c" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read 49e7ecd25105d8225c7fa610b93b984c" [14]=> string(40) "destroy 49e7ecd25105d8225c7fa610b93b984c" [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.0
array(23) { [0]=> string(19) "session_status(): 1" [1]=> string(25) "session_id before start: " [2]=> string(23) "isset($_SESSION): false" [3]=> string(14) "open PHPSESSID" [4]=> string(37) "read bdad05bba5665e862108f729d10127d8" [5]=> string(52) "current session_id: bdad05bba5665e862108f729d10127d8" [6]=> string(40) "destroy bdad05bba5665e862108f729d10127d8" [7]=> string(52) "current session_id: b2f07f65e7d9161bb45de9bc41ec9e6d" [8]=> string(54) "write b2f07f65e7d9161bb45de9bc41ec9e6d: foo|s:3:"bar";" [9]=> string(5) "close" [10]=> string(50) "$_SESSION after close: array ( 'foo' => 'bar', )" [11]=> string(56) "session_id after close: b2f07f65e7d9161bb45de9bc41ec9e6d" [12]=> string(14) "open PHPSESSID" [13]=> string(37) "read b2f07f65e7d9161bb45de9bc41ec9e6d" [14]=> string(40) "destroy b2f07f65e7d9161bb45de9bc41ec9e6d" [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.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/AWlCT 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/AWlCT on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/AWlCT 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/AWlCT on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/AWlCT 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/AWlCT 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/AWlCT on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/AWlCT on line 4
Process exited with code 255.

preferences:
302.55 ms | 401 KiB | 312 Q