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 ' . $maxlifetime; } public function __destruct() { var_dump($this->messages); } } $handler = new MySessionHandler(); session_set_save_handler($handler, true); $_SESSION['before'] = 'start'; $handler->messages[] = var_export($_SESSION, true); session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = session_id(); session_regenerate_id(); $handler->messages[] = session_id(); session_write_close(); session_start(); session_destroy(); $handler->messages[] = var_export($_SESSION, true); $handler->messages[] = session_id(); 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/Fc5Pc 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/Fc5Pc 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/Fc5Pc 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/Fc5Pc 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/Fc5Pc 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/Fc5Pc on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/Fc5Pc on line 45 Warning: session_start(): Session cannot be started after headers have already been sent in /in/Fc5Pc on line 51 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/Fc5Pc on line 56 Warning: session_start(): Session cannot be started after headers have already been sent in /in/Fc5Pc on line 61 Warning: session_destroy(): Trying to destroy uninitialized session in /in/Fc5Pc on line 62 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/Fc5Pc on line 67 Warning: session_start(): Session cannot be started after headers have already been sent in /in/Fc5Pc on line 68 array(5) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(0) "" [2]=> string(0) "" [3]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [4]=> string(0) "" }
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/Fc5Pc:51 Stack trace: #0 /in/Fc5Pc(51): session_start() #1 {main} thrown in /in/Fc5Pc on line 51 array(2) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" }
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: session_start(): Session callback expects true/false return value in /in/Fc5Pc on line 51 Warning: session_start(): Session callback expects true/false return value in /in/Fc5Pc on line 51 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/Fc5Pc on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/Fc5Pc on line 56 Warning: session_start(): Cannot start session when headers already sent in /in/Fc5Pc on line 61 Warning: session_destroy(): Trying to destroy uninitialized session in /in/Fc5Pc on line 62 Warning: session_id(): Cannot change session id when headers already sent in /in/Fc5Pc on line 67 Warning: session_start(): Cannot start session when headers already sent in /in/Fc5Pc on line 68 array(7) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(5) "close" [3]=> string(0) "" [4]=> string(0) "" [5]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [6]=> string(0) "" }
Output for 7.1.0 - 7.1.33
Warning: session_start(): Session callback expects true/false return value in /in/Fc5Pc on line 51 Warning: session_start(): Session callback expects true/false return value in /in/Fc5Pc on line 51 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/Fc5Pc on line 51
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/Fc5Pc on line 51 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/Fc5Pc on line 51 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(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b2ddb60d93ec18c70e10c9bafe9e728b" [3]=> string(32) "b2ddb60d93ec18c70e10c9bafe9e728b" [4]=> string(32) "0ef349485e5910a553f2864c4d31192d" [5]=> string(54) "write 0ef349485e5910a553f2864c4d31192d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0ef349485e5910a553f2864c4d31192d" [9]=> string(40) "destroy 0ef349485e5910a553f2864c4d31192d" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.21
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read aa96623bdcdc02865b64ea2f92e5010d" [3]=> string(32) "aa96623bdcdc02865b64ea2f92e5010d" [4]=> string(32) "9ae3cff7c73e460c4318c1c1c785d8c9" [5]=> string(54) "write 9ae3cff7c73e460c4318c1c1c785d8c9: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9ae3cff7c73e460c4318c1c1c785d8c9" [9]=> string(40) "destroy 9ae3cff7c73e460c4318c1c1c785d8c9" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.20
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c7fb0cc2117467b7f78637e0350a1359" [3]=> string(32) "c7fb0cc2117467b7f78637e0350a1359" [4]=> string(32) "05afd8c075aee04a398374ca5a40a273" [5]=> string(54) "write 05afd8c075aee04a398374ca5a40a273: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 05afd8c075aee04a398374ca5a40a273" [9]=> string(40) "destroy 05afd8c075aee04a398374ca5a40a273" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.19
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b6e1111ff43c804859a464706a6fb25d" [3]=> string(32) "b6e1111ff43c804859a464706a6fb25d" [4]=> string(32) "223063d9d7f34d5437cbe5d74f3c6411" [5]=> string(54) "write 223063d9d7f34d5437cbe5d74f3c6411: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 223063d9d7f34d5437cbe5d74f3c6411" [9]=> string(40) "destroy 223063d9d7f34d5437cbe5d74f3c6411" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.18
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3823240e1f663eedf9679668eb5f8657" [3]=> string(32) "3823240e1f663eedf9679668eb5f8657" [4]=> string(32) "c6d3edb71323a478816900c14b71df08" [5]=> string(54) "write c6d3edb71323a478816900c14b71df08: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c6d3edb71323a478816900c14b71df08" [9]=> string(40) "destroy c6d3edb71323a478816900c14b71df08" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.17
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 19fcbe544eb1054e8b428cca73a3532b" [3]=> string(32) "19fcbe544eb1054e8b428cca73a3532b" [4]=> string(32) "f3c9385a6437765d688f6af183cbc70d" [5]=> string(54) "write f3c9385a6437765d688f6af183cbc70d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f3c9385a6437765d688f6af183cbc70d" [9]=> string(40) "destroy f3c9385a6437765d688f6af183cbc70d" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.16
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e5f10541c7c8e962797b27433414d8a0" [3]=> string(32) "e5f10541c7c8e962797b27433414d8a0" [4]=> string(32) "b1464ad4670f3075fddd39693842cac8" [5]=> string(54) "write b1464ad4670f3075fddd39693842cac8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b1464ad4670f3075fddd39693842cac8" [9]=> string(40) "destroy b1464ad4670f3075fddd39693842cac8" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.15
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ee4f8c53908e4f7c777c8e4423583796" [3]=> string(32) "ee4f8c53908e4f7c777c8e4423583796" [4]=> string(32) "f570ec2817ec37ba5c10b4901a55e067" [5]=> string(54) "write f570ec2817ec37ba5c10b4901a55e067: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f570ec2817ec37ba5c10b4901a55e067" [9]=> string(40) "destroy f570ec2817ec37ba5c10b4901a55e067" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.14
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 64145d0b55428856eef876717001a585" [3]=> string(32) "64145d0b55428856eef876717001a585" [4]=> string(32) "49d732f67d5150d88c1257d5721c90c3" [5]=> string(54) "write 49d732f67d5150d88c1257d5721c90c3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 49d732f67d5150d88c1257d5721c90c3" [9]=> string(40) "destroy 49d732f67d5150d88c1257d5721c90c3" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.13
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fde2b84c144fd37eb3b7122cacdf8657" [3]=> string(32) "fde2b84c144fd37eb3b7122cacdf8657" [4]=> string(32) "e8a8dabec3ef70004a42aec9e1415a32" [5]=> string(54) "write e8a8dabec3ef70004a42aec9e1415a32: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e8a8dabec3ef70004a42aec9e1415a32" [9]=> string(40) "destroy e8a8dabec3ef70004a42aec9e1415a32" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.12
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 52e7bddf0c7779ed4ce3c62cdac2bbfd" [3]=> string(32) "52e7bddf0c7779ed4ce3c62cdac2bbfd" [4]=> string(32) "a90430e5e81a2d76da91da03e355e337" [5]=> string(54) "write a90430e5e81a2d76da91da03e355e337: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a90430e5e81a2d76da91da03e355e337" [9]=> string(40) "destroy a90430e5e81a2d76da91da03e355e337" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.11
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e22c41a19412086c33cbedf925c4618b" [3]=> string(32) "e22c41a19412086c33cbedf925c4618b" [4]=> string(32) "95d1e8b70be000b8db0002621ddab9fd" [5]=> string(54) "write 95d1e8b70be000b8db0002621ddab9fd: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 95d1e8b70be000b8db0002621ddab9fd" [9]=> string(40) "destroy 95d1e8b70be000b8db0002621ddab9fd" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.10
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 621e6918265cd85adfe0c2cf6128330c" [3]=> string(32) "621e6918265cd85adfe0c2cf6128330c" [4]=> string(32) "670ac0c0918d774fa4cc0f12282108e4" [5]=> string(54) "write 670ac0c0918d774fa4cc0f12282108e4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 670ac0c0918d774fa4cc0f12282108e4" [9]=> string(40) "destroy 670ac0c0918d774fa4cc0f12282108e4" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.9
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8d3c3a4d274167f034a5efa5f5c23b84" [3]=> string(32) "8d3c3a4d274167f034a5efa5f5c23b84" [4]=> string(32) "f32d059ab7aea4f5345deb937724dbba" [5]=> string(54) "write f32d059ab7aea4f5345deb937724dbba: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f32d059ab7aea4f5345deb937724dbba" [9]=> string(40) "destroy f32d059ab7aea4f5345deb937724dbba" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.8
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4a022d9e01401d8aba103542bc519b91" [3]=> string(32) "4a022d9e01401d8aba103542bc519b91" [4]=> string(32) "09e60045b9b22396c76b0a334fe47a19" [5]=> string(54) "write 09e60045b9b22396c76b0a334fe47a19: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 09e60045b9b22396c76b0a334fe47a19" [9]=> string(40) "destroy 09e60045b9b22396c76b0a334fe47a19" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.7
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 209042a73a7ebe19d509be20f304002b" [3]=> string(32) "209042a73a7ebe19d509be20f304002b" [4]=> string(32) "b612bdcc6883dfe2ae693a5876c27039" [5]=> string(54) "write b612bdcc6883dfe2ae693a5876c27039: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b612bdcc6883dfe2ae693a5876c27039" [9]=> string(40) "destroy b612bdcc6883dfe2ae693a5876c27039" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.35
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7eff4ca58a5b1c5af6a76e49dc439490" [3]=> string(32) "7eff4ca58a5b1c5af6a76e49dc439490" [4]=> string(32) "bac1e2e2ca65968790bad4b6c619a75a" [5]=> string(54) "write bac1e2e2ca65968790bad4b6c619a75a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bac1e2e2ca65968790bad4b6c619a75a" [9]=> string(40) "destroy bac1e2e2ca65968790bad4b6c619a75a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.34
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1377e21ec92ff50fcfa15e6aea22e075" [3]=> string(32) "1377e21ec92ff50fcfa15e6aea22e075" [4]=> string(32) "d73b6ad27607680a94630f582bcebc5f" [5]=> string(54) "write d73b6ad27607680a94630f582bcebc5f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d73b6ad27607680a94630f582bcebc5f" [9]=> string(40) "destroy d73b6ad27607680a94630f582bcebc5f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.33
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b9d2c79adc026f2efc4bd249b25703cc" [3]=> string(32) "b9d2c79adc026f2efc4bd249b25703cc" [4]=> string(32) "065fb36a78cd39dbb4b9c20214099091" [5]=> string(54) "write 065fb36a78cd39dbb4b9c20214099091: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 065fb36a78cd39dbb4b9c20214099091" [9]=> string(40) "destroy 065fb36a78cd39dbb4b9c20214099091" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.32
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6cc10705143da06b86dd31951458d0f8" [3]=> string(32) "6cc10705143da06b86dd31951458d0f8" [4]=> string(32) "31959101fa227f7a44286edf90a6c416" [5]=> string(54) "write 31959101fa227f7a44286edf90a6c416: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 31959101fa227f7a44286edf90a6c416" [9]=> string(40) "destroy 31959101fa227f7a44286edf90a6c416" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.31
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 722615dd5f817ce0d8ba142525366bee" [3]=> string(32) "722615dd5f817ce0d8ba142525366bee" [4]=> string(32) "97ae5c978d80f3f87a7db8ce29eb2216" [5]=> string(54) "write 97ae5c978d80f3f87a7db8ce29eb2216: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 97ae5c978d80f3f87a7db8ce29eb2216" [9]=> string(40) "destroy 97ae5c978d80f3f87a7db8ce29eb2216" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.30
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 27089abbc8e4a65cffb0aa95fe73ee31" [3]=> string(32) "27089abbc8e4a65cffb0aa95fe73ee31" [4]=> string(32) "694ffb44e80624eb5573f3b6dba5d1eb" [5]=> string(54) "write 694ffb44e80624eb5573f3b6dba5d1eb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 694ffb44e80624eb5573f3b6dba5d1eb" [9]=> string(40) "destroy 694ffb44e80624eb5573f3b6dba5d1eb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.29
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1d68e0686f1685f42f1351a1ed26ff12" [3]=> string(32) "1d68e0686f1685f42f1351a1ed26ff12" [4]=> string(32) "66aeb2242c7f49bcbac226f792fb3f7e" [5]=> string(54) "write 66aeb2242c7f49bcbac226f792fb3f7e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 66aeb2242c7f49bcbac226f792fb3f7e" [9]=> string(40) "destroy 66aeb2242c7f49bcbac226f792fb3f7e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.28
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7b504bee6aa95d61030130b8050dcb2d" [3]=> string(32) "7b504bee6aa95d61030130b8050dcb2d" [4]=> string(32) "960597210035e27078a6f3214e7d94ae" [5]=> string(54) "write 960597210035e27078a6f3214e7d94ae: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 960597210035e27078a6f3214e7d94ae" [9]=> string(40) "destroy 960597210035e27078a6f3214e7d94ae" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.27
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 88d4608ce80b8f5cf15163b1e05adf6c" [3]=> string(32) "88d4608ce80b8f5cf15163b1e05adf6c" [4]=> string(32) "3179a5d01bb7c73ec88a69acfc8f1392" [5]=> string(54) "write 3179a5d01bb7c73ec88a69acfc8f1392: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3179a5d01bb7c73ec88a69acfc8f1392" [9]=> string(40) "destroy 3179a5d01bb7c73ec88a69acfc8f1392" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.26
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 88b27fbc0a6a4cf54fe417e7e95434e1" [3]=> string(32) "88b27fbc0a6a4cf54fe417e7e95434e1" [4]=> string(32) "cccf40a28658536456cf214d8939e5ba" [5]=> string(54) "write cccf40a28658536456cf214d8939e5ba: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read cccf40a28658536456cf214d8939e5ba" [9]=> string(40) "destroy cccf40a28658536456cf214d8939e5ba" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.25
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 471afb3d51a8f44d8f6ad47ef4619e51" [3]=> string(32) "471afb3d51a8f44d8f6ad47ef4619e51" [4]=> string(32) "c5ea3cc7766668623edec1bd28be8cb2" [5]=> string(54) "write c5ea3cc7766668623edec1bd28be8cb2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c5ea3cc7766668623edec1bd28be8cb2" [9]=> string(40) "destroy c5ea3cc7766668623edec1bd28be8cb2" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.24
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bda3b30fd336ad4516f13b604c801adb" [3]=> string(32) "bda3b30fd336ad4516f13b604c801adb" [4]=> string(32) "3309d456c74ed06097801c261f14e703" [5]=> string(54) "write 3309d456c74ed06097801c261f14e703: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3309d456c74ed06097801c261f14e703" [9]=> string(40) "destroy 3309d456c74ed06097801c261f14e703" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.45
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3e1c3db0b1252b864fef661f6bed22ac" [3]=> string(32) "3e1c3db0b1252b864fef661f6bed22ac" [4]=> string(32) "628d1f717fa728924255e3d7c9c3ff06" [5]=> string(54) "write 628d1f717fa728924255e3d7c9c3ff06: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 628d1f717fa728924255e3d7c9c3ff06" [9]=> string(40) "destroy 628d1f717fa728924255e3d7c9c3ff06" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.44
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read be224e22758bf2c6aadd0117ad0baf9e" [3]=> string(32) "be224e22758bf2c6aadd0117ad0baf9e" [4]=> string(32) "70ff60e2c366d8c3cfd7ec63d297fc84" [5]=> string(54) "write 70ff60e2c366d8c3cfd7ec63d297fc84: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 70ff60e2c366d8c3cfd7ec63d297fc84" [9]=> string(40) "destroy 70ff60e2c366d8c3cfd7ec63d297fc84" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.43
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6dcf6a96623aca0e37b9731397776b79" [3]=> string(32) "6dcf6a96623aca0e37b9731397776b79" [4]=> string(32) "9d8ff35967852bceccd80af873daaff0" [5]=> string(54) "write 9d8ff35967852bceccd80af873daaff0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9d8ff35967852bceccd80af873daaff0" [9]=> string(40) "destroy 9d8ff35967852bceccd80af873daaff0" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.42
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 383b2dfd9d990a940a70e8327fb79e02" [3]=> string(32) "383b2dfd9d990a940a70e8327fb79e02" [4]=> string(32) "28b86cf2f8bf4c10cb375b8c5d2f6255" [5]=> string(54) "write 28b86cf2f8bf4c10cb375b8c5d2f6255: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 28b86cf2f8bf4c10cb375b8c5d2f6255" [9]=> string(40) "destroy 28b86cf2f8bf4c10cb375b8c5d2f6255" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.41
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 40c9ea89bb93da5447184f78d44df997" [3]=> string(32) "40c9ea89bb93da5447184f78d44df997" [4]=> string(32) "b422535bb5485a76f7e340f5731eb99e" [5]=> string(54) "write b422535bb5485a76f7e340f5731eb99e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b422535bb5485a76f7e340f5731eb99e" [9]=> string(40) "destroy b422535bb5485a76f7e340f5731eb99e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.40
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3fb63fcb56c567222d08ba9329227ce0" [3]=> string(32) "3fb63fcb56c567222d08ba9329227ce0" [4]=> string(32) "49855d7e00dd5e9613afe25317c709fa" [5]=> string(54) "write 49855d7e00dd5e9613afe25317c709fa: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 49855d7e00dd5e9613afe25317c709fa" [9]=> string(40) "destroy 49855d7e00dd5e9613afe25317c709fa" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.39
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read db2e04909e9a36bfefedbc266e972e94" [3]=> string(32) "db2e04909e9a36bfefedbc266e972e94" [4]=> string(32) "4c9fe7634c568b31a08583859f4829ed" [5]=> string(54) "write 4c9fe7634c568b31a08583859f4829ed: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4c9fe7634c568b31a08583859f4829ed" [9]=> string(40) "destroy 4c9fe7634c568b31a08583859f4829ed" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.38
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bcb4fdb9fea473d6bb7dd17f61dcfe95" [3]=> string(32) "bcb4fdb9fea473d6bb7dd17f61dcfe95" [4]=> string(32) "d12f810ad45d478b85c72d41c8ab54c0" [5]=> string(54) "write d12f810ad45d478b85c72d41c8ab54c0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d12f810ad45d478b85c72d41c8ab54c0" [9]=> string(40) "destroy d12f810ad45d478b85c72d41c8ab54c0" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.37
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3368de1d68641f953b0bf18a8985a460" [3]=> string(32) "3368de1d68641f953b0bf18a8985a460" [4]=> string(32) "34cc23b94b9e172b817b1650f2bcf56a" [5]=> string(54) "write 34cc23b94b9e172b817b1650f2bcf56a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 34cc23b94b9e172b817b1650f2bcf56a" [9]=> string(40) "destroy 34cc23b94b9e172b817b1650f2bcf56a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.36
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5a0c25bb0934562c7fb054c38cc90c1e" [3]=> string(32) "5a0c25bb0934562c7fb054c38cc90c1e" [4]=> string(32) "56f2deb6e80370efee6173eb23bd1a4b" [5]=> string(54) "write 56f2deb6e80370efee6173eb23bd1a4b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 56f2deb6e80370efee6173eb23bd1a4b" [9]=> string(40) "destroy 56f2deb6e80370efee6173eb23bd1a4b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.35
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ceaf7331972d23031c170dcc90e6dfbb" [3]=> string(32) "ceaf7331972d23031c170dcc90e6dfbb" [4]=> string(32) "45cdbfe7a0bb02eddf399f64d45277ee" [5]=> string(54) "write 45cdbfe7a0bb02eddf399f64d45277ee: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 45cdbfe7a0bb02eddf399f64d45277ee" [9]=> string(40) "destroy 45cdbfe7a0bb02eddf399f64d45277ee" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.34
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e5135e8d46dfeea71e5855d25c34aeb1" [3]=> string(32) "e5135e8d46dfeea71e5855d25c34aeb1" [4]=> string(32) "b9c199b43168fef3986c8199356c6a03" [5]=> string(54) "write b9c199b43168fef3986c8199356c6a03: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b9c199b43168fef3986c8199356c6a03" [9]=> string(40) "destroy b9c199b43168fef3986c8199356c6a03" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.32
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 31eb4fd11fa4669d4bacff7ceaf81fae" [3]=> string(32) "31eb4fd11fa4669d4bacff7ceaf81fae" [4]=> string(32) "a2b05b25e5cefa4ff27393ebd840c738" [5]=> string(54) "write a2b05b25e5cefa4ff27393ebd840c738: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a2b05b25e5cefa4ff27393ebd840c738" [9]=> string(40) "destroy a2b05b25e5cefa4ff27393ebd840c738" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.31
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d42e519249fb20c61c31052023e559ea" [3]=> string(32) "d42e519249fb20c61c31052023e559ea" [4]=> string(32) "85d7debce5531fd174efcd64e3c91a05" [5]=> string(54) "write 85d7debce5531fd174efcd64e3c91a05: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 85d7debce5531fd174efcd64e3c91a05" [9]=> string(40) "destroy 85d7debce5531fd174efcd64e3c91a05" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.30
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5398242626e7e4b5ac8dad332aafd265" [3]=> string(32) "5398242626e7e4b5ac8dad332aafd265" [4]=> string(32) "6734ce561372aae86a99292f2d6ceb6c" [5]=> string(54) "write 6734ce561372aae86a99292f2d6ceb6c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6734ce561372aae86a99292f2d6ceb6c" [9]=> string(40) "destroy 6734ce561372aae86a99292f2d6ceb6c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.29
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9c85cb1ee504be439cd826c5f3256b15" [3]=> string(32) "9c85cb1ee504be439cd826c5f3256b15" [4]=> string(32) "6ac3200609a395f18ed61d1326001ae1" [5]=> string(54) "write 6ac3200609a395f18ed61d1326001ae1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6ac3200609a395f18ed61d1326001ae1" [9]=> string(40) "destroy 6ac3200609a395f18ed61d1326001ae1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.28
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 460cf592c497cb2126ff967ceca97153" [3]=> string(32) "460cf592c497cb2126ff967ceca97153" [4]=> string(32) "4f267814c670b044103e17e97fe8198a" [5]=> string(54) "write 4f267814c670b044103e17e97fe8198a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4f267814c670b044103e17e97fe8198a" [9]=> string(40) "destroy 4f267814c670b044103e17e97fe8198a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.27
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4be8bc04440dcacac7d699110165c492" [3]=> string(32) "4be8bc04440dcacac7d699110165c492" [4]=> string(32) "df7d93311aac2479a74ec73ce586fb46" [5]=> string(54) "write df7d93311aac2479a74ec73ce586fb46: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read df7d93311aac2479a74ec73ce586fb46" [9]=> string(40) "destroy df7d93311aac2479a74ec73ce586fb46" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.26
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b782d76ef872786701cd9d7ce8a562aa" [3]=> string(32) "b782d76ef872786701cd9d7ce8a562aa" [4]=> string(32) "786c26dbc4c22a42d8eadc29fbee07de" [5]=> string(54) "write 786c26dbc4c22a42d8eadc29fbee07de: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 786c26dbc4c22a42d8eadc29fbee07de" [9]=> string(40) "destroy 786c26dbc4c22a42d8eadc29fbee07de" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.25
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4918d0a45ff6dcf89b9d382d8f63601d" [3]=> string(32) "4918d0a45ff6dcf89b9d382d8f63601d" [4]=> string(32) "eeb38c0b95a831a2882fbe884e010648" [5]=> string(54) "write eeb38c0b95a831a2882fbe884e010648: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read eeb38c0b95a831a2882fbe884e010648" [9]=> string(40) "destroy eeb38c0b95a831a2882fbe884e010648" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.24
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e1c1ec7e08bb5934961bf6536b66d9e2" [3]=> string(32) "e1c1ec7e08bb5934961bf6536b66d9e2" [4]=> string(32) "35e920e7ab12fe17d3702b47ce8852ba" [5]=> string(54) "write 35e920e7ab12fe17d3702b47ce8852ba: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 35e920e7ab12fe17d3702b47ce8852ba" [9]=> string(40) "destroy 35e920e7ab12fe17d3702b47ce8852ba" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.23
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9669e0760bc73b1da38452e9bc420069" [3]=> string(32) "9669e0760bc73b1da38452e9bc420069" [4]=> string(32) "01379acd0e48644d05aaeae846a14156" [5]=> string(54) "write 01379acd0e48644d05aaeae846a14156: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 01379acd0e48644d05aaeae846a14156" [9]=> string(40) "destroy 01379acd0e48644d05aaeae846a14156" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.22
array(18) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e6f887c7e830af83cbaa0a604e3a4932" [3]=> string(7) "gc 1440" [4]=> string(32) "e6f887c7e830af83cbaa0a604e3a4932" [5]=> string(32) "a42233aebfb82b6ce99c5fa85f90945b" [6]=> string(54) "write a42233aebfb82b6ce99c5fa85f90945b: foo|s:3:"bar";" [7]=> string(5) "close" [8]=> string(14) "open PHPSESSID" [9]=> string(37) "read a42233aebfb82b6ce99c5fa85f90945b" [10]=> string(40) "destroy a42233aebfb82b6ce99c5fa85f90945b" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(0) "" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.21
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8351d26a84a7f4772845fb2e0238498b" [3]=> string(32) "8351d26a84a7f4772845fb2e0238498b" [4]=> string(32) "9987e3c2409a5433609ac731479db79c" [5]=> string(54) "write 9987e3c2409a5433609ac731479db79c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9987e3c2409a5433609ac731479db79c" [9]=> string(40) "destroy 9987e3c2409a5433609ac731479db79c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.20
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9d6b516b2a56446c437a0babcd2be964" [3]=> string(32) "9d6b516b2a56446c437a0babcd2be964" [4]=> string(32) "504ea1ad7a0a746540e1b15ca0fba1cb" [5]=> string(54) "write 504ea1ad7a0a746540e1b15ca0fba1cb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 504ea1ad7a0a746540e1b15ca0fba1cb" [9]=> string(40) "destroy 504ea1ad7a0a746540e1b15ca0fba1cb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.19
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9b9e94bbb7ca70573a1106657de59fcb" [3]=> string(32) "9b9e94bbb7ca70573a1106657de59fcb" [4]=> string(32) "168f10bdc613992e3bdcb52167bb3b22" [5]=> string(54) "write 168f10bdc613992e3bdcb52167bb3b22: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 168f10bdc613992e3bdcb52167bb3b22" [9]=> string(40) "destroy 168f10bdc613992e3bdcb52167bb3b22" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.18
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 49637eec109f2ace300903ad8bda7d99" [3]=> string(32) "49637eec109f2ace300903ad8bda7d99" [4]=> string(32) "bc6717aed6bdd1fa2fc20d7642804def" [5]=> string(54) "write bc6717aed6bdd1fa2fc20d7642804def: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bc6717aed6bdd1fa2fc20d7642804def" [9]=> string(40) "destroy bc6717aed6bdd1fa2fc20d7642804def" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.17
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 01e75ce3128d31d7c83d70c56abee4f0" [3]=> string(32) "01e75ce3128d31d7c83d70c56abee4f0" [4]=> string(32) "14887d9cc71ed1e72696e1f90b21b650" [5]=> string(54) "write 14887d9cc71ed1e72696e1f90b21b650: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 14887d9cc71ed1e72696e1f90b21b650" [9]=> string(40) "destroy 14887d9cc71ed1e72696e1f90b21b650" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.16
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b23b247939891625bf2939ef632158ac" [3]=> string(32) "b23b247939891625bf2939ef632158ac" [4]=> string(32) "33df8ea4a7a2ae11bdef96c3e534c926" [5]=> string(54) "write 33df8ea4a7a2ae11bdef96c3e534c926: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 33df8ea4a7a2ae11bdef96c3e534c926" [9]=> string(40) "destroy 33df8ea4a7a2ae11bdef96c3e534c926" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.15
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 57375e8e7930e7b193253ec671d22ea2" [3]=> string(32) "57375e8e7930e7b193253ec671d22ea2" [4]=> string(32) "3c2a8082f582ca6273b750c51a37e01e" [5]=> string(54) "write 3c2a8082f582ca6273b750c51a37e01e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3c2a8082f582ca6273b750c51a37e01e" [9]=> string(40) "destroy 3c2a8082f582ca6273b750c51a37e01e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.14
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b0030d48328195f10771b09b065b09aa" [3]=> string(32) "b0030d48328195f10771b09b065b09aa" [4]=> string(32) "de852a0b71f0df66f7b290665017610c" [5]=> string(54) "write de852a0b71f0df66f7b290665017610c: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read de852a0b71f0df66f7b290665017610c" [9]=> string(40) "destroy de852a0b71f0df66f7b290665017610c" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.13
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 91acfbe25551e9d8e42f2f6372b77e6a" [3]=> string(32) "91acfbe25551e9d8e42f2f6372b77e6a" [4]=> string(32) "814e6c89e089a14282040364bf01a3ea" [5]=> string(54) "write 814e6c89e089a14282040364bf01a3ea: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 814e6c89e089a14282040364bf01a3ea" [9]=> string(40) "destroy 814e6c89e089a14282040364bf01a3ea" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.12
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 711f4c9dd9bad406654b6b33da1e38c0" [3]=> string(32) "711f4c9dd9bad406654b6b33da1e38c0" [4]=> string(32) "c5b9b11f70e067c555522b304bcdec5f" [5]=> string(54) "write c5b9b11f70e067c555522b304bcdec5f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c5b9b11f70e067c555522b304bcdec5f" [9]=> string(40) "destroy c5b9b11f70e067c555522b304bcdec5f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.11
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e7c2ca4e5329f1d92df67c2ae8b8e30c" [3]=> string(32) "e7c2ca4e5329f1d92df67c2ae8b8e30c" [4]=> string(32) "fbe4d675f31fdca593a0d56634b9521d" [5]=> string(54) "write fbe4d675f31fdca593a0d56634b9521d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read fbe4d675f31fdca593a0d56634b9521d" [9]=> string(40) "destroy fbe4d675f31fdca593a0d56634b9521d" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.10
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3ad91bc5ab86fc72a53efe6a9834144d" [3]=> string(32) "3ad91bc5ab86fc72a53efe6a9834144d" [4]=> string(32) "b3a196f4e3a9900f492b909c0f7aece5" [5]=> string(54) "write b3a196f4e3a9900f492b909c0f7aece5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b3a196f4e3a9900f492b909c0f7aece5" [9]=> string(40) "destroy b3a196f4e3a9900f492b909c0f7aece5" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.9
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ad53305d6dd98fd11d69eb4084650f04" [3]=> string(32) "ad53305d6dd98fd11d69eb4084650f04" [4]=> string(32) "63ca17d86d04f05f6f8463b68ed4a83b" [5]=> string(54) "write 63ca17d86d04f05f6f8463b68ed4a83b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 63ca17d86d04f05f6f8463b68ed4a83b" [9]=> string(40) "destroy 63ca17d86d04f05f6f8463b68ed4a83b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.8
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bc65fa0bffe96939414424629e269587" [3]=> string(32) "bc65fa0bffe96939414424629e269587" [4]=> string(32) "c88a6bbf4c0a92993d649d0ec45ce4fb" [5]=> string(54) "write c88a6bbf4c0a92993d649d0ec45ce4fb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c88a6bbf4c0a92993d649d0ec45ce4fb" [9]=> string(40) "destroy c88a6bbf4c0a92993d649d0ec45ce4fb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.7
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d588224f0c3b57c1609aedafff90d104" [3]=> string(32) "d588224f0c3b57c1609aedafff90d104" [4]=> string(32) "2ed6457ae9b4d8445d8c2798690321c6" [5]=> string(54) "write 2ed6457ae9b4d8445d8c2798690321c6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 2ed6457ae9b4d8445d8c2798690321c6" [9]=> string(40) "destroy 2ed6457ae9b4d8445d8c2798690321c6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.6
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ae581f502c27e8222274a070d726d2cf" [3]=> string(32) "ae581f502c27e8222274a070d726d2cf" [4]=> string(32) "3774091c4efd0338bb5e197556d16ccd" [5]=> string(54) "write 3774091c4efd0338bb5e197556d16ccd: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3774091c4efd0338bb5e197556d16ccd" [9]=> string(40) "destroy 3774091c4efd0338bb5e197556d16ccd" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.5
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f525c31a1fe487430e6fd800fbffacb3" [3]=> string(32) "f525c31a1fe487430e6fd800fbffacb3" [4]=> string(32) "2517a4da070f3bdc9c0acd350a5513dd" [5]=> string(54) "write 2517a4da070f3bdc9c0acd350a5513dd: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 2517a4da070f3bdc9c0acd350a5513dd" [9]=> string(40) "destroy 2517a4da070f3bdc9c0acd350a5513dd" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.4
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5fcf9fc7c943b40f6674dc0382ee5c36" [3]=> string(32) "5fcf9fc7c943b40f6674dc0382ee5c36" [4]=> string(32) "c7afec77fa0672e52e63e3aabfd329c7" [5]=> string(54) "write c7afec77fa0672e52e63e3aabfd329c7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c7afec77fa0672e52e63e3aabfd329c7" [9]=> string(40) "destroy c7afec77fa0672e52e63e3aabfd329c7" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.3
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3f126cae0703f5dbd0fe889254ecc754" [3]=> string(32) "3f126cae0703f5dbd0fe889254ecc754" [4]=> string(32) "94996a8a3ef5d9817d4ecda005094912" [5]=> string(54) "write 94996a8a3ef5d9817d4ecda005094912: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 94996a8a3ef5d9817d4ecda005094912" [9]=> string(40) "destroy 94996a8a3ef5d9817d4ecda005094912" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.2
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0971ed7f0911860c79c0b0bae5fc19b3" [3]=> string(32) "0971ed7f0911860c79c0b0bae5fc19b3" [4]=> string(32) "d5e055780a42378b8bc0b8697a351f43" [5]=> string(54) "write d5e055780a42378b8bc0b8697a351f43: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read d5e055780a42378b8bc0b8697a351f43" [9]=> string(40) "destroy d5e055780a42378b8bc0b8697a351f43" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.1
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 454bf23779adca6616f18f8eacdd8b69" [3]=> string(32) "454bf23779adca6616f18f8eacdd8b69" [4]=> string(32) "46808cccdecbda8f18ca4e0eff0cfbaf" [5]=> string(54) "write 46808cccdecbda8f18ca4e0eff0cfbaf: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 46808cccdecbda8f18ca4e0eff0cfbaf" [9]=> string(40) "destroy 46808cccdecbda8f18ca4e0eff0cfbaf" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.0
array(17) { [0]=> string(32) "array ( 'before' => 'start', )" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 94ac12df68f7492a08f6d88278f91597" [3]=> string(32) "94ac12df68f7492a08f6d88278f91597" [4]=> string(32) "0c089d8de893526891a1e2324ed68aab" [5]=> string(54) "write 0c089d8de893526891a1e2324ed68aab: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0c089d8de893526891a1e2324ed68aab" [9]=> string(40) "destroy 0c089d8de893526891a1e2324ed68aab" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/Fc5Pc 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/Fc5Pc on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/Fc5Pc 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/Fc5Pc on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/Fc5Pc 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/Fc5Pc 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/Fc5Pc on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/Fc5Pc on line 4
Process exited with code 255.

preferences:
283.99 ms | 401 KiB | 360 Q