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; } } $handler = new MySessionHandler(); session_set_save_handler($handler, 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('new'); var_dump($handler->messages);
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
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/8FuW0 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/8FuW0 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/8FuW0 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/8FuW0 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/8FuW0 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/8FuW0 on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/8FuW0 on line 40 Warning: session_start(): Session cannot be started after headers have already been sent in /in/8FuW0 on line 41 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/8FuW0 on line 46 Warning: session_start(): Session cannot be started after headers have already been sent in /in/8FuW0 on line 51 Warning: session_destroy(): Trying to destroy uninitialized session in /in/8FuW0 on line 52 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/8FuW0 on line 57 array(4) { [0]=> string(0) "" [1]=> string(0) "" [2]=> string(27) "array ( 'foo' => 'bar', )" [3]=> 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/8FuW0:41 Stack trace: #0 /in/8FuW0(41): session_start() #1 {main} thrown in /in/8FuW0 on line 41
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/8FuW0 on line 41 Warning: session_start(): Session callback expects true/false return value in /in/8FuW0 on line 41 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/8FuW0 on line 41 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/8FuW0 on line 46 Warning: session_start(): Cannot start session when headers already sent in /in/8FuW0 on line 51 Warning: session_destroy(): Trying to destroy uninitialized session in /in/8FuW0 on line 52 Warning: session_id(): Cannot change session id when headers already sent in /in/8FuW0 on line 57 array(6) { [0]=> string(14) "open PHPSESSID" [1]=> string(5) "close" [2]=> string(0) "" [3]=> string(0) "" [4]=> string(27) "array ( 'foo' => 'bar', )" [5]=> string(0) "" }
Output for 7.1.0 - 7.1.33
Warning: session_start(): Session callback expects true/false return value in /in/8FuW0 on line 41 Warning: session_start(): Session callback expects true/false return value in /in/8FuW0 on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/8FuW0 on line 41
Process exited with code 255.
Output for 7.0.0 - 7.0.33
Warning: session_start(): Session callback expects true/false return value in /in/8FuW0 on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/8FuW0 on line 41 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.40
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 655d87ba1837ef757099c094f9a72cfc" [2]=> string(32) "655d87ba1837ef757099c094f9a72cfc" [3]=> string(32) "126d99b9f667b979d28b1f0e29eda0b3" [4]=> string(54) "write 126d99b9f667b979d28b1f0e29eda0b3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 126d99b9f667b979d28b1f0e29eda0b3" [8]=> string(40) "destroy 126d99b9f667b979d28b1f0e29eda0b3" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.39
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dbbcfd0400f13b544684e2b52f2b47a6" [2]=> string(32) "dbbcfd0400f13b544684e2b52f2b47a6" [3]=> string(32) "cc9af9f4cf68665815e2872b02070287" [4]=> string(54) "write cc9af9f4cf68665815e2872b02070287: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cc9af9f4cf68665815e2872b02070287" [8]=> string(40) "destroy cc9af9f4cf68665815e2872b02070287" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.38
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 30627f5db304e1a996cafc7accdf4f94" [2]=> string(32) "30627f5db304e1a996cafc7accdf4f94" [3]=> string(32) "d1d1e39d48e84135622f5bf4816c3fc8" [4]=> string(54) "write d1d1e39d48e84135622f5bf4816c3fc8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d1d1e39d48e84135622f5bf4816c3fc8" [8]=> string(40) "destroy d1d1e39d48e84135622f5bf4816c3fc8" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.37
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c69613ffaea03acfc8bc7316e3409c49" [2]=> string(32) "c69613ffaea03acfc8bc7316e3409c49" [3]=> string(32) "77f9c3e8ea3a925e9300965508b1f0ec" [4]=> string(54) "write 77f9c3e8ea3a925e9300965508b1f0ec: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 77f9c3e8ea3a925e9300965508b1f0ec" [8]=> string(40) "destroy 77f9c3e8ea3a925e9300965508b1f0ec" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.36
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3be8c450b80a2a48a5c425c212bf36c1" [2]=> string(32) "3be8c450b80a2a48a5c425c212bf36c1" [3]=> string(32) "004a6ddb61cbcb640c09ca7bedd6450d" [4]=> string(54) "write 004a6ddb61cbcb640c09ca7bedd6450d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 004a6ddb61cbcb640c09ca7bedd6450d" [8]=> string(40) "destroy 004a6ddb61cbcb640c09ca7bedd6450d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.35
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 75547e9f2e39255125194ab24d34ca9d" [2]=> string(32) "75547e9f2e39255125194ab24d34ca9d" [3]=> string(32) "9b8e5196ad1d1cad1acf952a88f30370" [4]=> string(54) "write 9b8e5196ad1d1cad1acf952a88f30370: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9b8e5196ad1d1cad1acf952a88f30370" [8]=> string(40) "destroy 9b8e5196ad1d1cad1acf952a88f30370" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.34
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7c485a672d08fd5094f3d24f06a07db9" [2]=> string(32) "7c485a672d08fd5094f3d24f06a07db9" [3]=> string(32) "8d2e221b9ec328ead018110c61b0e7d6" [4]=> string(54) "write 8d2e221b9ec328ead018110c61b0e7d6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8d2e221b9ec328ead018110c61b0e7d6" [8]=> string(40) "destroy 8d2e221b9ec328ead018110c61b0e7d6" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.33
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6ecbbda7a07cff266212f8e73cc23d7a" [2]=> string(32) "6ecbbda7a07cff266212f8e73cc23d7a" [3]=> string(32) "d7cecc885758542240dbf859d1e3efdf" [4]=> string(54) "write d7cecc885758542240dbf859d1e3efdf: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d7cecc885758542240dbf859d1e3efdf" [8]=> string(40) "destroy d7cecc885758542240dbf859d1e3efdf" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.32
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2d6957718fc525a8f08275863b3d7f3f" [2]=> string(32) "2d6957718fc525a8f08275863b3d7f3f" [3]=> string(32) "ae44ad345c92fe7aa4f552a897c0e849" [4]=> string(54) "write ae44ad345c92fe7aa4f552a897c0e849: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ae44ad345c92fe7aa4f552a897c0e849" [8]=> string(40) "destroy ae44ad345c92fe7aa4f552a897c0e849" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.31
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read aebaef915369d27964ac95bfa15f35d8" [2]=> string(32) "aebaef915369d27964ac95bfa15f35d8" [3]=> string(32) "858df3ff42281644024482bdaed14c48" [4]=> string(54) "write 858df3ff42281644024482bdaed14c48: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 858df3ff42281644024482bdaed14c48" [8]=> string(40) "destroy 858df3ff42281644024482bdaed14c48" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.30
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3d4835ef242fb1c3481ff0a74462bbe8" [2]=> string(32) "3d4835ef242fb1c3481ff0a74462bbe8" [3]=> string(32) "fd2a62298c80a6290aded16585e155cd" [4]=> string(54) "write fd2a62298c80a6290aded16585e155cd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fd2a62298c80a6290aded16585e155cd" [8]=> string(40) "destroy fd2a62298c80a6290aded16585e155cd" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.29
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4c04cfef0b55fcffee6d679b1c0e1287" [2]=> string(32) "4c04cfef0b55fcffee6d679b1c0e1287" [3]=> string(32) "eda69d87b84e4bff3876ad9e5e5551ea" [4]=> string(54) "write eda69d87b84e4bff3876ad9e5e5551ea: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read eda69d87b84e4bff3876ad9e5e5551ea" [8]=> string(40) "destroy eda69d87b84e4bff3876ad9e5e5551ea" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.28
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8b120c73487d203fd5414008ff395284" [2]=> string(32) "8b120c73487d203fd5414008ff395284" [3]=> string(32) "aec824a7d28f1b2e4ee70d316a110857" [4]=> string(54) "write aec824a7d28f1b2e4ee70d316a110857: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read aec824a7d28f1b2e4ee70d316a110857" [8]=> string(40) "destroy aec824a7d28f1b2e4ee70d316a110857" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.27
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e8b8107abba8d946631a47b221e1c9c8" [2]=> string(32) "e8b8107abba8d946631a47b221e1c9c8" [3]=> string(32) "57dafbb6ac694b427973b73788663f67" [4]=> string(54) "write 57dafbb6ac694b427973b73788663f67: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 57dafbb6ac694b427973b73788663f67" [8]=> string(40) "destroy 57dafbb6ac694b427973b73788663f67" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.26
array(13) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e9faba495cccd3521e0b48cc826fb327" [2]=> string(7) "gc 1440" [3]=> string(32) "e9faba495cccd3521e0b48cc826fb327" [4]=> string(32) "e0a386b2170735676de83d03f429c40d" [5]=> string(54) "write e0a386b2170735676de83d03f429c40d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e0a386b2170735676de83d03f429c40d" [9]=> string(40) "destroy e0a386b2170735676de83d03f429c40d" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" }
Output for 5.6.25
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d318774ffdb1c9264300b4871c6ddeb0" [2]=> string(32) "d318774ffdb1c9264300b4871c6ddeb0" [3]=> string(32) "dbc4a2f62e92bf4b656536c4a9bb6974" [4]=> string(54) "write dbc4a2f62e92bf4b656536c4a9bb6974: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read dbc4a2f62e92bf4b656536c4a9bb6974" [8]=> string(40) "destroy dbc4a2f62e92bf4b656536c4a9bb6974" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.24
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d12ceb9afe011b0173fb2c1a58fd7f9b" [2]=> string(32) "d12ceb9afe011b0173fb2c1a58fd7f9b" [3]=> string(32) "a6336e43f58c2ff906be85555daf2c12" [4]=> string(54) "write a6336e43f58c2ff906be85555daf2c12: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a6336e43f58c2ff906be85555daf2c12" [8]=> string(40) "destroy a6336e43f58c2ff906be85555daf2c12" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.23
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 42c3731ec209463aa3439fedacfcdaed" [2]=> string(32) "42c3731ec209463aa3439fedacfcdaed" [3]=> string(32) "29c5e886f7e06102f0335eb1a23e0660" [4]=> string(54) "write 29c5e886f7e06102f0335eb1a23e0660: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 29c5e886f7e06102f0335eb1a23e0660" [8]=> string(40) "destroy 29c5e886f7e06102f0335eb1a23e0660" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.22
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b9d1f0fa775a0540b539ed1eedfa8273" [2]=> string(32) "b9d1f0fa775a0540b539ed1eedfa8273" [3]=> string(32) "5a5320ca2ed8c23559fb585252165ad6" [4]=> string(54) "write 5a5320ca2ed8c23559fb585252165ad6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5a5320ca2ed8c23559fb585252165ad6" [8]=> string(40) "destroy 5a5320ca2ed8c23559fb585252165ad6" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.21
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c584e80e451827e0fa71c66103007ca4" [2]=> string(32) "c584e80e451827e0fa71c66103007ca4" [3]=> string(32) "72e296a2ea125d44bab9cc2b47324521" [4]=> string(54) "write 72e296a2ea125d44bab9cc2b47324521: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 72e296a2ea125d44bab9cc2b47324521" [8]=> string(40) "destroy 72e296a2ea125d44bab9cc2b47324521" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.20
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a306b490272a86beeaecd41e83e15d78" [2]=> string(32) "a306b490272a86beeaecd41e83e15d78" [3]=> string(32) "eba6af6bd32c76d32559af16c9f6e991" [4]=> string(54) "write eba6af6bd32c76d32559af16c9f6e991: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read eba6af6bd32c76d32559af16c9f6e991" [8]=> string(40) "destroy eba6af6bd32c76d32559af16c9f6e991" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.19
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d7231076c149e959f9712ec10c001e3a" [2]=> string(32) "d7231076c149e959f9712ec10c001e3a" [3]=> string(32) "2ae4d1aae004e2e4eeda9f0c5a78a547" [4]=> string(54) "write 2ae4d1aae004e2e4eeda9f0c5a78a547: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2ae4d1aae004e2e4eeda9f0c5a78a547" [8]=> string(40) "destroy 2ae4d1aae004e2e4eeda9f0c5a78a547" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.18
array(13) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c88aa8b7b2a42aaf5cf800fabeb76834" [2]=> string(7) "gc 1440" [3]=> string(32) "c88aa8b7b2a42aaf5cf800fabeb76834" [4]=> string(32) "0cf997eda4978ce8bc481332e617d37e" [5]=> string(54) "write 0cf997eda4978ce8bc481332e617d37e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0cf997eda4978ce8bc481332e617d37e" [9]=> string(40) "destroy 0cf997eda4978ce8bc481332e617d37e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" }
Output for 5.6.17
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c071651daf7576a2ca76d57ca99384a0" [2]=> string(32) "c071651daf7576a2ca76d57ca99384a0" [3]=> string(32) "af1b761a4dca99d33238bd0f0c31e2a2" [4]=> string(54) "write af1b761a4dca99d33238bd0f0c31e2a2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read af1b761a4dca99d33238bd0f0c31e2a2" [8]=> string(40) "destroy af1b761a4dca99d33238bd0f0c31e2a2" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.16
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4667c9314482df8c3a24b02fcf7b35d9" [2]=> string(32) "4667c9314482df8c3a24b02fcf7b35d9" [3]=> string(32) "2c8c417e5b62ded7e4c9a246fad98b0d" [4]=> string(54) "write 2c8c417e5b62ded7e4c9a246fad98b0d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2c8c417e5b62ded7e4c9a246fad98b0d" [8]=> string(40) "destroy 2c8c417e5b62ded7e4c9a246fad98b0d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.15
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d6c4e7fa3085702ce6894d9e239ff881" [2]=> string(32) "d6c4e7fa3085702ce6894d9e239ff881" [3]=> string(32) "62334c28133df323697db9e4cfa89758" [4]=> string(54) "write 62334c28133df323697db9e4cfa89758: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 62334c28133df323697db9e4cfa89758" [8]=> string(40) "destroy 62334c28133df323697db9e4cfa89758" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.14
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4ec41460a357b708caa25ea2337d1272" [2]=> string(32) "4ec41460a357b708caa25ea2337d1272" [3]=> string(32) "58714bc9df9deddf486065a044af1ccf" [4]=> string(54) "write 58714bc9df9deddf486065a044af1ccf: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 58714bc9df9deddf486065a044af1ccf" [8]=> string(40) "destroy 58714bc9df9deddf486065a044af1ccf" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.13
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 72be283761ba13e8e8e0507b46dc551f" [2]=> string(32) "72be283761ba13e8e8e0507b46dc551f" [3]=> string(32) "4dcf68f9af26fe02ee3b56d9ddd7c629" [4]=> string(54) "write 4dcf68f9af26fe02ee3b56d9ddd7c629: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4dcf68f9af26fe02ee3b56d9ddd7c629" [8]=> string(40) "destroy 4dcf68f9af26fe02ee3b56d9ddd7c629" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.12
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 26fb6f8cbf91efffabb8327f0fb8ff01" [2]=> string(32) "26fb6f8cbf91efffabb8327f0fb8ff01" [3]=> string(32) "21abc9c2ee6aa5621dd40053b3ed1ba7" [4]=> string(54) "write 21abc9c2ee6aa5621dd40053b3ed1ba7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 21abc9c2ee6aa5621dd40053b3ed1ba7" [8]=> string(40) "destroy 21abc9c2ee6aa5621dd40053b3ed1ba7" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.11
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f3152129a6552567ccbea32ead8c4de3" [2]=> string(32) "f3152129a6552567ccbea32ead8c4de3" [3]=> string(32) "4e01b46e7c8ecf7b1ee39e91819f4410" [4]=> string(54) "write 4e01b46e7c8ecf7b1ee39e91819f4410: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4e01b46e7c8ecf7b1ee39e91819f4410" [8]=> string(40) "destroy 4e01b46e7c8ecf7b1ee39e91819f4410" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.10
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c6d38d2baad4c304d033b856ada62bd6" [2]=> string(32) "c6d38d2baad4c304d033b856ada62bd6" [3]=> string(32) "82bc88b852b1774dc6a53108ea46b3ed" [4]=> string(54) "write 82bc88b852b1774dc6a53108ea46b3ed: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 82bc88b852b1774dc6a53108ea46b3ed" [8]=> string(40) "destroy 82bc88b852b1774dc6a53108ea46b3ed" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.9
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8a84228cc28fd5181e8ec22744ef39c0" [2]=> string(32) "8a84228cc28fd5181e8ec22744ef39c0" [3]=> string(32) "3074bf0a50100cd4f05de53bb3ddfb34" [4]=> string(54) "write 3074bf0a50100cd4f05de53bb3ddfb34: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3074bf0a50100cd4f05de53bb3ddfb34" [8]=> string(40) "destroy 3074bf0a50100cd4f05de53bb3ddfb34" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.8
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1e2157e2805edaa4587cfe9c971f484a" [2]=> string(32) "1e2157e2805edaa4587cfe9c971f484a" [3]=> string(32) "102dd81903ea5202bced98799c1b65a1" [4]=> string(54) "write 102dd81903ea5202bced98799c1b65a1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 102dd81903ea5202bced98799c1b65a1" [8]=> string(40) "destroy 102dd81903ea5202bced98799c1b65a1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.7
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 156bc8a621d37218df777b5db177e714" [2]=> string(32) "156bc8a621d37218df777b5db177e714" [3]=> string(32) "b0862761f4fb65fc5ab6957c30165c8b" [4]=> string(54) "write b0862761f4fb65fc5ab6957c30165c8b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b0862761f4fb65fc5ab6957c30165c8b" [8]=> string(40) "destroy b0862761f4fb65fc5ab6957c30165c8b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.6
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2c463eb07cdb685e6a02904b7272e2b5" [2]=> string(32) "2c463eb07cdb685e6a02904b7272e2b5" [3]=> string(32) "a8466cbdeade0918fedb6314aaf7dc09" [4]=> string(54) "write a8466cbdeade0918fedb6314aaf7dc09: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a8466cbdeade0918fedb6314aaf7dc09" [8]=> string(40) "destroy a8466cbdeade0918fedb6314aaf7dc09" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.5
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8c87a59fb7b71c376c137f079478d74e" [2]=> string(32) "8c87a59fb7b71c376c137f079478d74e" [3]=> string(32) "c94d57a25ac0e02a8549bcef6cf0bd03" [4]=> string(54) "write c94d57a25ac0e02a8549bcef6cf0bd03: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c94d57a25ac0e02a8549bcef6cf0bd03" [8]=> string(40) "destroy c94d57a25ac0e02a8549bcef6cf0bd03" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.4
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6e1282574a363cb35a76f7c33593a75d" [2]=> string(32) "6e1282574a363cb35a76f7c33593a75d" [3]=> string(32) "9a3224fed67b1be17cdfde39d023b704" [4]=> string(54) "write 9a3224fed67b1be17cdfde39d023b704: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9a3224fed67b1be17cdfde39d023b704" [8]=> string(40) "destroy 9a3224fed67b1be17cdfde39d023b704" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.3
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dcecea63dd4b915b29d8956c86b97149" [2]=> string(32) "dcecea63dd4b915b29d8956c86b97149" [3]=> string(32) "3afd14ef7d9fcfde3e3444572f0bf9b7" [4]=> string(54) "write 3afd14ef7d9fcfde3e3444572f0bf9b7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3afd14ef7d9fcfde3e3444572f0bf9b7" [8]=> string(40) "destroy 3afd14ef7d9fcfde3e3444572f0bf9b7" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.2
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 059e4a91fc7642f137369d8ed9fe3c86" [2]=> string(32) "059e4a91fc7642f137369d8ed9fe3c86" [3]=> string(32) "7bcb7a143f21f3403d55382d2f6472f7" [4]=> string(54) "write 7bcb7a143f21f3403d55382d2f6472f7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7bcb7a143f21f3403d55382d2f6472f7" [8]=> string(40) "destroy 7bcb7a143f21f3403d55382d2f6472f7" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.1
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f904e4c5a915687d461fb70f8443b750" [2]=> string(32) "f904e4c5a915687d461fb70f8443b750" [3]=> string(32) "119ca2b835c3f24957e9b525cf9e293e" [4]=> string(54) "write 119ca2b835c3f24957e9b525cf9e293e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 119ca2b835c3f24957e9b525cf9e293e" [8]=> string(40) "destroy 119ca2b835c3f24957e9b525cf9e293e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.6.0
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9b8bfcbba44f0cc340a32d5b4ddadb74" [2]=> string(32) "9b8bfcbba44f0cc340a32d5b4ddadb74" [3]=> string(32) "4b06ca6f4ffb5b0324881d85668ba0ff" [4]=> string(54) "write 4b06ca6f4ffb5b0324881d85668ba0ff: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4b06ca6f4ffb5b0324881d85668ba0ff" [8]=> string(40) "destroy 4b06ca6f4ffb5b0324881d85668ba0ff" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.38
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 18f5f77bd0314224a7dfbbf8f1a844fc" [2]=> string(32) "18f5f77bd0314224a7dfbbf8f1a844fc" [3]=> string(32) "83f00fe564c467d76d04bf5564aa90e7" [4]=> string(54) "write 83f00fe564c467d76d04bf5564aa90e7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 83f00fe564c467d76d04bf5564aa90e7" [8]=> string(40) "destroy 83f00fe564c467d76d04bf5564aa90e7" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.37
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2e392fd28459addded89344b386aa91a" [2]=> string(32) "2e392fd28459addded89344b386aa91a" [3]=> string(32) "e965a442bad35eca1ca552f69ddc17b5" [4]=> string(54) "write e965a442bad35eca1ca552f69ddc17b5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e965a442bad35eca1ca552f69ddc17b5" [8]=> string(40) "destroy e965a442bad35eca1ca552f69ddc17b5" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.36
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 093814e205b3a37c43abd2c2363e2063" [2]=> string(32) "093814e205b3a37c43abd2c2363e2063" [3]=> string(32) "e2c15262412e142550a8813e675081de" [4]=> string(54) "write e2c15262412e142550a8813e675081de: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e2c15262412e142550a8813e675081de" [8]=> string(40) "destroy e2c15262412e142550a8813e675081de" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.35
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 51debf610c350ce86d3cecb0897e7831" [2]=> string(32) "51debf610c350ce86d3cecb0897e7831" [3]=> string(32) "c0c312b2e38a03436f8eeffee558b268" [4]=> string(54) "write c0c312b2e38a03436f8eeffee558b268: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c0c312b2e38a03436f8eeffee558b268" [8]=> string(40) "destroy c0c312b2e38a03436f8eeffee558b268" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.34
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8a855fe692538daf0b96610b41bfae46" [2]=> string(32) "8a855fe692538daf0b96610b41bfae46" [3]=> string(32) "226c54610afa336d2ef895a5554afe65" [4]=> string(54) "write 226c54610afa336d2ef895a5554afe65: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 226c54610afa336d2ef895a5554afe65" [8]=> string(40) "destroy 226c54610afa336d2ef895a5554afe65" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.33
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9e7768cd1722e17925392d54d70ff4a7" [2]=> string(32) "9e7768cd1722e17925392d54d70ff4a7" [3]=> string(32) "e517b40fa65362e7a3c44339b681fb34" [4]=> string(54) "write e517b40fa65362e7a3c44339b681fb34: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e517b40fa65362e7a3c44339b681fb34" [8]=> string(40) "destroy e517b40fa65362e7a3c44339b681fb34" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.32
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3bf4b3fa6b8953bcd38d9afd6ac61a72" [2]=> string(32) "3bf4b3fa6b8953bcd38d9afd6ac61a72" [3]=> string(32) "958208426dd98094c1aa56fc8ee29778" [4]=> string(54) "write 958208426dd98094c1aa56fc8ee29778: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 958208426dd98094c1aa56fc8ee29778" [8]=> string(40) "destroy 958208426dd98094c1aa56fc8ee29778" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.31
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6f2f62c393ba62cea342b65e5aa59d6e" [2]=> string(32) "6f2f62c393ba62cea342b65e5aa59d6e" [3]=> string(32) "7846bb4e897d1944eec8e7704a85498f" [4]=> string(54) "write 7846bb4e897d1944eec8e7704a85498f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7846bb4e897d1944eec8e7704a85498f" [8]=> string(40) "destroy 7846bb4e897d1944eec8e7704a85498f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.30
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 93965ab77733a2b2ed208fdefae1589d" [2]=> string(32) "93965ab77733a2b2ed208fdefae1589d" [3]=> string(32) "39cd225d22d2865084cea93db2926df3" [4]=> string(54) "write 39cd225d22d2865084cea93db2926df3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 39cd225d22d2865084cea93db2926df3" [8]=> string(40) "destroy 39cd225d22d2865084cea93db2926df3" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.29
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e474738852b1e42f6f31a65b74039ef8" [2]=> string(32) "e474738852b1e42f6f31a65b74039ef8" [3]=> string(32) "619ba467e30ec05fd6063c29be861d6f" [4]=> string(54) "write 619ba467e30ec05fd6063c29be861d6f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 619ba467e30ec05fd6063c29be861d6f" [8]=> string(40) "destroy 619ba467e30ec05fd6063c29be861d6f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.28
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read af17d4b4a5e9cd65ea773f3fed9e7bb1" [2]=> string(32) "af17d4b4a5e9cd65ea773f3fed9e7bb1" [3]=> string(32) "6be0d7f9d20606d60e3e33d1fc2dd0f4" [4]=> string(54) "write 6be0d7f9d20606d60e3e33d1fc2dd0f4: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6be0d7f9d20606d60e3e33d1fc2dd0f4" [8]=> string(40) "destroy 6be0d7f9d20606d60e3e33d1fc2dd0f4" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.27
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a087a6a648ab3aa9666528e6036e473f" [2]=> string(32) "a087a6a648ab3aa9666528e6036e473f" [3]=> string(32) "4e2be1c532fe86ea70879c5f1e6016e1" [4]=> string(54) "write 4e2be1c532fe86ea70879c5f1e6016e1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4e2be1c532fe86ea70879c5f1e6016e1" [8]=> string(40) "destroy 4e2be1c532fe86ea70879c5f1e6016e1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.26
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 264db0ec2879795ee5f7bab69998e69d" [2]=> string(32) "264db0ec2879795ee5f7bab69998e69d" [3]=> string(32) "052ddf169330e31d47e2148b6833b192" [4]=> string(54) "write 052ddf169330e31d47e2148b6833b192: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 052ddf169330e31d47e2148b6833b192" [8]=> string(40) "destroy 052ddf169330e31d47e2148b6833b192" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.25
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5fff694bf1f816e1fc4b7f82219dae1c" [2]=> string(32) "5fff694bf1f816e1fc4b7f82219dae1c" [3]=> string(32) "985d60f234d91eac4d530e7b51e38c52" [4]=> string(54) "write 985d60f234d91eac4d530e7b51e38c52: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 985d60f234d91eac4d530e7b51e38c52" [8]=> string(40) "destroy 985d60f234d91eac4d530e7b51e38c52" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.24
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2b82af80e19bba0b1391d83d5f1dc819" [2]=> string(32) "2b82af80e19bba0b1391d83d5f1dc819" [3]=> string(32) "f8e85614ee8a8f7fd0363f79ce93fb7d" [4]=> string(54) "write f8e85614ee8a8f7fd0363f79ce93fb7d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f8e85614ee8a8f7fd0363f79ce93fb7d" [8]=> string(40) "destroy f8e85614ee8a8f7fd0363f79ce93fb7d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.23
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8a09d1840c6e52be90440953cf3f20cf" [2]=> string(32) "8a09d1840c6e52be90440953cf3f20cf" [3]=> string(32) "84c9058669a7342473a6f2b333d157c5" [4]=> string(54) "write 84c9058669a7342473a6f2b333d157c5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 84c9058669a7342473a6f2b333d157c5" [8]=> string(40) "destroy 84c9058669a7342473a6f2b333d157c5" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.22
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 39be8709cc9b334c717363cf655a27cf" [2]=> string(32) "39be8709cc9b334c717363cf655a27cf" [3]=> string(32) "b88eb4ed759952797532eab435122d25" [4]=> string(54) "write b88eb4ed759952797532eab435122d25: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b88eb4ed759952797532eab435122d25" [8]=> string(40) "destroy b88eb4ed759952797532eab435122d25" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.21
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8cd35c27cb7c67d8c92649782948d5b3" [2]=> string(32) "8cd35c27cb7c67d8c92649782948d5b3" [3]=> string(32) "0e19ccf8cdf15efdb81b8f3ddc18148f" [4]=> string(54) "write 0e19ccf8cdf15efdb81b8f3ddc18148f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0e19ccf8cdf15efdb81b8f3ddc18148f" [8]=> string(40) "destroy 0e19ccf8cdf15efdb81b8f3ddc18148f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.20
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2f9a080119259347b024abd4f5a9a355" [2]=> string(32) "2f9a080119259347b024abd4f5a9a355" [3]=> string(32) "918d26a24ad8ed5700451b42aab33b7f" [4]=> string(54) "write 918d26a24ad8ed5700451b42aab33b7f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 918d26a24ad8ed5700451b42aab33b7f" [8]=> string(40) "destroy 918d26a24ad8ed5700451b42aab33b7f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.19
array(13) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9a3a42911d4a3bbad9cb2b812ea310ca" [2]=> string(7) "gc 1440" [3]=> string(32) "9a3a42911d4a3bbad9cb2b812ea310ca" [4]=> string(32) "455978a09415ce4e97a21eb1255dea4f" [5]=> string(54) "write 455978a09415ce4e97a21eb1255dea4f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 455978a09415ce4e97a21eb1255dea4f" [9]=> string(40) "destroy 455978a09415ce4e97a21eb1255dea4f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" }
Output for 5.5.18
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d60b8c37d29ae9e4b979c8e63e12e578" [2]=> string(32) "d60b8c37d29ae9e4b979c8e63e12e578" [3]=> string(32) "9c57519fbcc80c8f7fb72ce1308defcd" [4]=> string(54) "write 9c57519fbcc80c8f7fb72ce1308defcd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9c57519fbcc80c8f7fb72ce1308defcd" [8]=> string(40) "destroy 9c57519fbcc80c8f7fb72ce1308defcd" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.17
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 17002cdbc82b2f1478ebbc39025e756b" [2]=> string(32) "17002cdbc82b2f1478ebbc39025e756b" [3]=> string(32) "e97eaa64a7a3b684f5bb58dc7c7099bd" [4]=> string(54) "write e97eaa64a7a3b684f5bb58dc7c7099bd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e97eaa64a7a3b684f5bb58dc7c7099bd" [8]=> string(40) "destroy e97eaa64a7a3b684f5bb58dc7c7099bd" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.16
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5d768dba1ce8023716d23a25092e3ccb" [2]=> string(32) "5d768dba1ce8023716d23a25092e3ccb" [3]=> string(32) "523cdd8aa99da73a358645404c20c2d1" [4]=> string(54) "write 523cdd8aa99da73a358645404c20c2d1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 523cdd8aa99da73a358645404c20c2d1" [8]=> string(40) "destroy 523cdd8aa99da73a358645404c20c2d1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.15
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9a980c4d80868f790334c98b60b707e4" [2]=> string(32) "9a980c4d80868f790334c98b60b707e4" [3]=> string(32) "7cd2bb542ed4289e6b18d342b8cb7f2d" [4]=> string(54) "write 7cd2bb542ed4289e6b18d342b8cb7f2d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7cd2bb542ed4289e6b18d342b8cb7f2d" [8]=> string(40) "destroy 7cd2bb542ed4289e6b18d342b8cb7f2d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.14
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7a2c46ade88047a3cf7c2a4f123f0164" [2]=> string(32) "7a2c46ade88047a3cf7c2a4f123f0164" [3]=> string(32) "7273082943ea41b2b22ba3669adda704" [4]=> string(54) "write 7273082943ea41b2b22ba3669adda704: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7273082943ea41b2b22ba3669adda704" [8]=> string(40) "destroy 7273082943ea41b2b22ba3669adda704" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.13
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7d95217d9d9bfd878f80a03c82bd629e" [2]=> string(32) "7d95217d9d9bfd878f80a03c82bd629e" [3]=> string(32) "44a5bd2501ee4048098327b471c2387e" [4]=> string(54) "write 44a5bd2501ee4048098327b471c2387e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 44a5bd2501ee4048098327b471c2387e" [8]=> string(40) "destroy 44a5bd2501ee4048098327b471c2387e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.12
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c3c05cc199f99bf357194e0f579440ff" [2]=> string(32) "c3c05cc199f99bf357194e0f579440ff" [3]=> string(32) "b2e653e5891d202b6c2dc6eb9056d1b3" [4]=> string(54) "write b2e653e5891d202b6c2dc6eb9056d1b3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b2e653e5891d202b6c2dc6eb9056d1b3" [8]=> string(40) "destroy b2e653e5891d202b6c2dc6eb9056d1b3" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.11
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d71b374cc7236c2b3789a5969a6a135c" [2]=> string(32) "d71b374cc7236c2b3789a5969a6a135c" [3]=> string(32) "71d09620d322bbba456238df485e5da5" [4]=> string(54) "write 71d09620d322bbba456238df485e5da5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 71d09620d322bbba456238df485e5da5" [8]=> string(40) "destroy 71d09620d322bbba456238df485e5da5" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.10
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8c6aa1b1087bcf2b57a5ac82d4e9109a" [2]=> string(32) "8c6aa1b1087bcf2b57a5ac82d4e9109a" [3]=> string(32) "35b85a36751d105e448ffaf57f5cc13b" [4]=> string(54) "write 35b85a36751d105e448ffaf57f5cc13b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 35b85a36751d105e448ffaf57f5cc13b" [8]=> string(40) "destroy 35b85a36751d105e448ffaf57f5cc13b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.9
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f86426adfbc1a56993c3cdff434d04d7" [2]=> string(32) "f86426adfbc1a56993c3cdff434d04d7" [3]=> string(32) "25432ccf54cc5ff4cf935cae76c868fb" [4]=> string(54) "write 25432ccf54cc5ff4cf935cae76c868fb: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 25432ccf54cc5ff4cf935cae76c868fb" [8]=> string(40) "destroy 25432ccf54cc5ff4cf935cae76c868fb" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.8
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e8235466a1fba45a95748a7255a44534" [2]=> string(32) "e8235466a1fba45a95748a7255a44534" [3]=> string(32) "05b8a663e12626ea1dc48636cd6f51a0" [4]=> string(54) "write 05b8a663e12626ea1dc48636cd6f51a0: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 05b8a663e12626ea1dc48636cd6f51a0" [8]=> string(40) "destroy 05b8a663e12626ea1dc48636cd6f51a0" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.7
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 102a53d831e984729610e4cc758c0cb5" [2]=> string(32) "102a53d831e984729610e4cc758c0cb5" [3]=> string(32) "9ac378a01cbac066dd40259393960088" [4]=> string(54) "write 9ac378a01cbac066dd40259393960088: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9ac378a01cbac066dd40259393960088" [8]=> string(40) "destroy 9ac378a01cbac066dd40259393960088" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.6
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 55b69d3274a54c93940efde192f7d35a" [2]=> string(32) "55b69d3274a54c93940efde192f7d35a" [3]=> string(32) "9c04e121309d90ffeb8dbe9e984b433e" [4]=> string(54) "write 9c04e121309d90ffeb8dbe9e984b433e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9c04e121309d90ffeb8dbe9e984b433e" [8]=> string(40) "destroy 9c04e121309d90ffeb8dbe9e984b433e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.5
array(13) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c67dfc6c40c1f2b0bbfd29f2db6700fc" [2]=> string(7) "gc 1440" [3]=> string(32) "c67dfc6c40c1f2b0bbfd29f2db6700fc" [4]=> string(32) "5a59f03c484c679bbfdd852dd9621a59" [5]=> string(54) "write 5a59f03c484c679bbfdd852dd9621a59: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5a59f03c484c679bbfdd852dd9621a59" [9]=> string(40) "destroy 5a59f03c484c679bbfdd852dd9621a59" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" }
Output for 5.5.4
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7d1243dd37d8a5860f777ce69b35bc69" [2]=> string(32) "7d1243dd37d8a5860f777ce69b35bc69" [3]=> string(32) "80e57f5de78e2c12f68de0b9c09682c1" [4]=> string(54) "write 80e57f5de78e2c12f68de0b9c09682c1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 80e57f5de78e2c12f68de0b9c09682c1" [8]=> string(40) "destroy 80e57f5de78e2c12f68de0b9c09682c1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.3
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 82aec8267784306b0f2c4c61e801fd07" [2]=> string(32) "82aec8267784306b0f2c4c61e801fd07" [3]=> string(32) "071ca3f33125a95dd094d9a9d6b7f8ee" [4]=> string(54) "write 071ca3f33125a95dd094d9a9d6b7f8ee: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 071ca3f33125a95dd094d9a9d6b7f8ee" [8]=> string(40) "destroy 071ca3f33125a95dd094d9a9d6b7f8ee" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.2
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ed23b5a40d6316af6233b47efabf169b" [2]=> string(32) "ed23b5a40d6316af6233b47efabf169b" [3]=> string(32) "c707dd25d1a5fd785513d5bd1fedfa20" [4]=> string(54) "write c707dd25d1a5fd785513d5bd1fedfa20: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c707dd25d1a5fd785513d5bd1fedfa20" [8]=> string(40) "destroy c707dd25d1a5fd785513d5bd1fedfa20" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.1
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5bf434f4c20bc5dba6899acf78a8f5e8" [2]=> string(32) "5bf434f4c20bc5dba6899acf78a8f5e8" [3]=> string(32) "8f86a566dd04fc3f36367770035586bb" [4]=> string(54) "write 8f86a566dd04fc3f36367770035586bb: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8f86a566dd04fc3f36367770035586bb" [8]=> string(40) "destroy 8f86a566dd04fc3f36367770035586bb" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.5.0
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6c890c491ec6e3811988e901176c0209" [2]=> string(32) "6c890c491ec6e3811988e901176c0209" [3]=> string(32) "15fc524f9ec48e474775427a907856fa" [4]=> string(54) "write 15fc524f9ec48e474775427a907856fa: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 15fc524f9ec48e474775427a907856fa" [8]=> string(40) "destroy 15fc524f9ec48e474775427a907856fa" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.45
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bbd4f9f3c70076e7fd357812d3f410c0" [2]=> string(32) "bbd4f9f3c70076e7fd357812d3f410c0" [3]=> string(32) "5497d72c32091c2e4325fd2102a21e07" [4]=> string(54) "write 5497d72c32091c2e4325fd2102a21e07: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5497d72c32091c2e4325fd2102a21e07" [8]=> string(40) "destroy 5497d72c32091c2e4325fd2102a21e07" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.44
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5c3ca6e5e63dc682fa54ca7e54ffc639" [2]=> string(32) "5c3ca6e5e63dc682fa54ca7e54ffc639" [3]=> string(32) "d67cb4918a9b6b7d30184aba4febd172" [4]=> string(54) "write d67cb4918a9b6b7d30184aba4febd172: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d67cb4918a9b6b7d30184aba4febd172" [8]=> string(40) "destroy d67cb4918a9b6b7d30184aba4febd172" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.43
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 44637ebdfeb31e08f5231dae1d0f90ba" [2]=> string(32) "44637ebdfeb31e08f5231dae1d0f90ba" [3]=> string(32) "f4d147c19915bce55482055a7cbff6eb" [4]=> string(54) "write f4d147c19915bce55482055a7cbff6eb: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f4d147c19915bce55482055a7cbff6eb" [8]=> string(40) "destroy f4d147c19915bce55482055a7cbff6eb" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.42
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c67a289c2c04184d3eabdf3671d7b01c" [2]=> string(32) "c67a289c2c04184d3eabdf3671d7b01c" [3]=> string(32) "ce7b39934b3b3d4f1dd906f28fc2bf18" [4]=> string(54) "write ce7b39934b3b3d4f1dd906f28fc2bf18: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ce7b39934b3b3d4f1dd906f28fc2bf18" [8]=> string(40) "destroy ce7b39934b3b3d4f1dd906f28fc2bf18" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.41
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 694a9783ac027466885cb0de2e676751" [2]=> string(32) "694a9783ac027466885cb0de2e676751" [3]=> string(32) "5c3690748098d26251b30f2e1038c4aa" [4]=> string(54) "write 5c3690748098d26251b30f2e1038c4aa: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5c3690748098d26251b30f2e1038c4aa" [8]=> string(40) "destroy 5c3690748098d26251b30f2e1038c4aa" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.40
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read eb3c7c28cbb041b8b74ec4dff7c56eb2" [2]=> string(32) "eb3c7c28cbb041b8b74ec4dff7c56eb2" [3]=> string(32) "70a14093b5217545c16a8556145743c0" [4]=> string(54) "write 70a14093b5217545c16a8556145743c0: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 70a14093b5217545c16a8556145743c0" [8]=> string(40) "destroy 70a14093b5217545c16a8556145743c0" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.39
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dfd419f198f4b22e1847711c301c0a77" [2]=> string(32) "dfd419f198f4b22e1847711c301c0a77" [3]=> string(32) "f25198936541f86b0447d0444d257e3a" [4]=> string(54) "write f25198936541f86b0447d0444d257e3a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f25198936541f86b0447d0444d257e3a" [8]=> string(40) "destroy f25198936541f86b0447d0444d257e3a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.38
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f44cc9ecbab340f9061444b3611036dc" [2]=> string(32) "f44cc9ecbab340f9061444b3611036dc" [3]=> string(32) "b9ed3f7420d83e9f284bb5c2f44ac07a" [4]=> string(54) "write b9ed3f7420d83e9f284bb5c2f44ac07a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b9ed3f7420d83e9f284bb5c2f44ac07a" [8]=> string(40) "destroy b9ed3f7420d83e9f284bb5c2f44ac07a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.37
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 60be2daa6de9260215585df31b303ae5" [2]=> string(32) "60be2daa6de9260215585df31b303ae5" [3]=> string(32) "a6b5cd782e4d1d4e9c966d55cb422bec" [4]=> string(54) "write a6b5cd782e4d1d4e9c966d55cb422bec: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a6b5cd782e4d1d4e9c966d55cb422bec" [8]=> string(40) "destroy a6b5cd782e4d1d4e9c966d55cb422bec" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.36
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 49f1e0f9accaef629ae408e30d635711" [2]=> string(32) "49f1e0f9accaef629ae408e30d635711" [3]=> string(32) "d4044a4eac452e0c6d8b29774bb9aec1" [4]=> string(54) "write d4044a4eac452e0c6d8b29774bb9aec1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d4044a4eac452e0c6d8b29774bb9aec1" [8]=> string(40) "destroy d4044a4eac452e0c6d8b29774bb9aec1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.35
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 08e327a053fe4297b4f9244991ed9389" [2]=> string(32) "08e327a053fe4297b4f9244991ed9389" [3]=> string(32) "3d657be396ffcb09213dc343f5800232" [4]=> string(54) "write 3d657be396ffcb09213dc343f5800232: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3d657be396ffcb09213dc343f5800232" [8]=> string(40) "destroy 3d657be396ffcb09213dc343f5800232" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.34
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f8bb9fe76be50f55f291897612176e68" [2]=> string(32) "f8bb9fe76be50f55f291897612176e68" [3]=> string(32) "2087b8c5bc60d60fe1d35196449577d3" [4]=> string(54) "write 2087b8c5bc60d60fe1d35196449577d3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2087b8c5bc60d60fe1d35196449577d3" [8]=> string(40) "destroy 2087b8c5bc60d60fe1d35196449577d3" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.33
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 77ed7b8d020505be3ee1fb8ee7c79f92" [2]=> string(32) "77ed7b8d020505be3ee1fb8ee7c79f92" [3]=> string(32) "9a404f228240d689f331e62f0255285c" [4]=> string(54) "write 9a404f228240d689f331e62f0255285c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9a404f228240d689f331e62f0255285c" [8]=> string(40) "destroy 9a404f228240d689f331e62f0255285c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.32
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 90d900419943e2115642ae44ec8f3264" [2]=> string(32) "90d900419943e2115642ae44ec8f3264" [3]=> string(32) "260538d576ee0204712ad74d8f565c8f" [4]=> string(54) "write 260538d576ee0204712ad74d8f565c8f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 260538d576ee0204712ad74d8f565c8f" [8]=> string(40) "destroy 260538d576ee0204712ad74d8f565c8f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.31
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 20f8ee7cf3af297905f1b898f05b4e18" [2]=> string(32) "20f8ee7cf3af297905f1b898f05b4e18" [3]=> string(32) "b107cc6f67683570717cf2ba20ed6075" [4]=> string(54) "write b107cc6f67683570717cf2ba20ed6075: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b107cc6f67683570717cf2ba20ed6075" [8]=> string(40) "destroy b107cc6f67683570717cf2ba20ed6075" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.30
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7a0e5c4d9282c4ff35a92a8ab3934bc7" [2]=> string(32) "7a0e5c4d9282c4ff35a92a8ab3934bc7" [3]=> string(32) "16ec106ae4e6e19a7cf66ea14949e38e" [4]=> string(54) "write 16ec106ae4e6e19a7cf66ea14949e38e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 16ec106ae4e6e19a7cf66ea14949e38e" [8]=> string(40) "destroy 16ec106ae4e6e19a7cf66ea14949e38e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.29
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read eff3fb68bef8d52738734adb73c236ed" [2]=> string(32) "eff3fb68bef8d52738734adb73c236ed" [3]=> string(32) "7e961261f2b4f0d427e05f02420a33bd" [4]=> string(54) "write 7e961261f2b4f0d427e05f02420a33bd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7e961261f2b4f0d427e05f02420a33bd" [8]=> string(40) "destroy 7e961261f2b4f0d427e05f02420a33bd" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.28
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 19919794d06470f09e80f101402e33ed" [2]=> string(32) "19919794d06470f09e80f101402e33ed" [3]=> string(32) "973ae1e52b96387d0be71499e96d6c19" [4]=> string(54) "write 973ae1e52b96387d0be71499e96d6c19: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 973ae1e52b96387d0be71499e96d6c19" [8]=> string(40) "destroy 973ae1e52b96387d0be71499e96d6c19" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.27
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b10be88f1bf55797baa50e8b05799c77" [2]=> string(32) "b10be88f1bf55797baa50e8b05799c77" [3]=> string(32) "81a6b21576dc7a5c6b1c37be529c8750" [4]=> string(54) "write 81a6b21576dc7a5c6b1c37be529c8750: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 81a6b21576dc7a5c6b1c37be529c8750" [8]=> string(40) "destroy 81a6b21576dc7a5c6b1c37be529c8750" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.26
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7dbcbda746cb13a5b26160ce7e5e86dd" [2]=> string(32) "7dbcbda746cb13a5b26160ce7e5e86dd" [3]=> string(32) "0ac11a8e3366485f164e52f6ba490f1c" [4]=> string(54) "write 0ac11a8e3366485f164e52f6ba490f1c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0ac11a8e3366485f164e52f6ba490f1c" [8]=> string(40) "destroy 0ac11a8e3366485f164e52f6ba490f1c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.25
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 55c20f8eb87e99bc61d505bae1fb97c9" [2]=> string(32) "55c20f8eb87e99bc61d505bae1fb97c9" [3]=> string(32) "77d1d6e762ba90e7a1b719d44d27abae" [4]=> string(54) "write 77d1d6e762ba90e7a1b719d44d27abae: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 77d1d6e762ba90e7a1b719d44d27abae" [8]=> string(40) "destroy 77d1d6e762ba90e7a1b719d44d27abae" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.24
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a9dd49377e415cc6b12e9f604bc190f1" [2]=> string(32) "a9dd49377e415cc6b12e9f604bc190f1" [3]=> string(32) "53a153f2b384238858b7240ddb8793c2" [4]=> string(54) "write 53a153f2b384238858b7240ddb8793c2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 53a153f2b384238858b7240ddb8793c2" [8]=> string(40) "destroy 53a153f2b384238858b7240ddb8793c2" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.23
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9ac254ecd35c99e79dce0be355b16206" [2]=> string(32) "9ac254ecd35c99e79dce0be355b16206" [3]=> string(32) "2d552766d433af835fbc2e650220e449" [4]=> string(54) "write 2d552766d433af835fbc2e650220e449: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2d552766d433af835fbc2e650220e449" [8]=> string(40) "destroy 2d552766d433af835fbc2e650220e449" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.22
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7e84be4d3803ccdd3015f9e80adcb599" [2]=> string(32) "7e84be4d3803ccdd3015f9e80adcb599" [3]=> string(32) "2d6ba1a2dc381f728445c9a10b93c24b" [4]=> string(54) "write 2d6ba1a2dc381f728445c9a10b93c24b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2d6ba1a2dc381f728445c9a10b93c24b" [8]=> string(40) "destroy 2d6ba1a2dc381f728445c9a10b93c24b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.21
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6dd9da05560597514d70dee59442ca5b" [2]=> string(32) "6dd9da05560597514d70dee59442ca5b" [3]=> string(32) "7aa4f99d881bcef88d9f5a775e7d851a" [4]=> string(54) "write 7aa4f99d881bcef88d9f5a775e7d851a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7aa4f99d881bcef88d9f5a775e7d851a" [8]=> string(40) "destroy 7aa4f99d881bcef88d9f5a775e7d851a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.20
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c4323c4e73d2d3b686f3991a68648607" [2]=> string(32) "c4323c4e73d2d3b686f3991a68648607" [3]=> string(32) "6a9c1c46fe2ea960dd45985e11c8e982" [4]=> string(54) "write 6a9c1c46fe2ea960dd45985e11c8e982: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6a9c1c46fe2ea960dd45985e11c8e982" [8]=> string(40) "destroy 6a9c1c46fe2ea960dd45985e11c8e982" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.19
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b74db01dbdcd6e0511b3a06c56729407" [2]=> string(32) "b74db01dbdcd6e0511b3a06c56729407" [3]=> string(32) "a5c7094ee5b3119f902c6c8c64f8ede8" [4]=> string(54) "write a5c7094ee5b3119f902c6c8c64f8ede8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a5c7094ee5b3119f902c6c8c64f8ede8" [8]=> string(40) "destroy a5c7094ee5b3119f902c6c8c64f8ede8" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.18
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 57974f6712e302051ad5e2956e614ca0" [2]=> string(32) "57974f6712e302051ad5e2956e614ca0" [3]=> string(32) "3aa233b32c7cea1a838e34ad00032011" [4]=> string(54) "write 3aa233b32c7cea1a838e34ad00032011: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3aa233b32c7cea1a838e34ad00032011" [8]=> string(40) "destroy 3aa233b32c7cea1a838e34ad00032011" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.17
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ee1fc76bdd48ff690bd242a935a426d2" [2]=> string(32) "ee1fc76bdd48ff690bd242a935a426d2" [3]=> string(32) "3e015a8faf7bb69afee3cf17bbf08b93" [4]=> string(54) "write 3e015a8faf7bb69afee3cf17bbf08b93: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3e015a8faf7bb69afee3cf17bbf08b93" [8]=> string(40) "destroy 3e015a8faf7bb69afee3cf17bbf08b93" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.16
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 429a9df7cd2398b4aac9039130072e74" [2]=> string(32) "429a9df7cd2398b4aac9039130072e74" [3]=> string(32) "c008d2616a9ed48c70aa255c30d64177" [4]=> string(54) "write c008d2616a9ed48c70aa255c30d64177: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c008d2616a9ed48c70aa255c30d64177" [8]=> string(40) "destroy c008d2616a9ed48c70aa255c30d64177" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.15
array(13) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d317e38d14a789bd0912dc5b5bf9d5c5" [2]=> string(32) "d317e38d14a789bd0912dc5b5bf9d5c5" [3]=> string(32) "5d8d277506075f82ad6f3062260a3423" [4]=> string(54) "write 5d8d277506075f82ad6f3062260a3423: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5d8d277506075f82ad6f3062260a3423" [8]=> string(7) "gc 1440" [9]=> string(40) "destroy 5d8d277506075f82ad6f3062260a3423" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" }
Output for 5.4.14
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b850bf6ea096a79be67379bc61aed4ec" [2]=> string(32) "b850bf6ea096a79be67379bc61aed4ec" [3]=> string(32) "e4bf2701970bbb8e1da51752073c07a2" [4]=> string(54) "write e4bf2701970bbb8e1da51752073c07a2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e4bf2701970bbb8e1da51752073c07a2" [8]=> string(40) "destroy e4bf2701970bbb8e1da51752073c07a2" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.13
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c04036c3de58bcc25205398ec63f53a9" [2]=> string(32) "c04036c3de58bcc25205398ec63f53a9" [3]=> string(32) "796d69ec6e418a57b3105f5b59f36c22" [4]=> string(54) "write 796d69ec6e418a57b3105f5b59f36c22: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 796d69ec6e418a57b3105f5b59f36c22" [8]=> string(40) "destroy 796d69ec6e418a57b3105f5b59f36c22" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.12
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read eed82416c37e198e71814c2cb0af174a" [2]=> string(32) "eed82416c37e198e71814c2cb0af174a" [3]=> string(32) "346069b63bb9fa1bd99af6cb43eecb5e" [4]=> string(54) "write 346069b63bb9fa1bd99af6cb43eecb5e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 346069b63bb9fa1bd99af6cb43eecb5e" [8]=> string(40) "destroy 346069b63bb9fa1bd99af6cb43eecb5e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.11
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6ae87c5c6d139a114590fb6d24a15bda" [2]=> string(32) "6ae87c5c6d139a114590fb6d24a15bda" [3]=> string(32) "ef7ebe6c1438b1349599363dd82fee60" [4]=> string(54) "write ef7ebe6c1438b1349599363dd82fee60: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ef7ebe6c1438b1349599363dd82fee60" [8]=> string(40) "destroy ef7ebe6c1438b1349599363dd82fee60" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.10
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d5eb40d2548febd1819d4b15eac65fa1" [2]=> string(32) "d5eb40d2548febd1819d4b15eac65fa1" [3]=> string(32) "c29e07d30e239049eb52f7e960c798fc" [4]=> string(54) "write c29e07d30e239049eb52f7e960c798fc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c29e07d30e239049eb52f7e960c798fc" [8]=> string(40) "destroy c29e07d30e239049eb52f7e960c798fc" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.9
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6b17ec37189d636f2fc20292d626447f" [2]=> string(32) "6b17ec37189d636f2fc20292d626447f" [3]=> string(32) "cfeb81ec0412b2a50f8f92285193f5bc" [4]=> string(54) "write cfeb81ec0412b2a50f8f92285193f5bc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cfeb81ec0412b2a50f8f92285193f5bc" [8]=> string(40) "destroy cfeb81ec0412b2a50f8f92285193f5bc" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.8
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c2cf3a8d4c0d9c6cdb76f74bdcbd45a5" [2]=> string(32) "c2cf3a8d4c0d9c6cdb76f74bdcbd45a5" [3]=> string(32) "3d1af93271ec7479451261b20ddc2c6f" [4]=> string(54) "write 3d1af93271ec7479451261b20ddc2c6f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3d1af93271ec7479451261b20ddc2c6f" [8]=> string(40) "destroy 3d1af93271ec7479451261b20ddc2c6f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.7
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ece456036be0f72d1d17a6388f3df1b9" [2]=> string(32) "ece456036be0f72d1d17a6388f3df1b9" [3]=> string(32) "1744be397924cbbfea7d74ff75436bd6" [4]=> string(54) "write 1744be397924cbbfea7d74ff75436bd6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 1744be397924cbbfea7d74ff75436bd6" [8]=> string(40) "destroy 1744be397924cbbfea7d74ff75436bd6" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.6
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ab9e250f348f5476162cf024923be9ce" [2]=> string(32) "ab9e250f348f5476162cf024923be9ce" [3]=> string(32) "a12ead7343db542cfe60f0e5efcc4127" [4]=> string(54) "write a12ead7343db542cfe60f0e5efcc4127: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a12ead7343db542cfe60f0e5efcc4127" [8]=> string(40) "destroy a12ead7343db542cfe60f0e5efcc4127" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.5
array(13) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f8282f94323cfcdf7bc0db639f5c9f29" [2]=> string(32) "f8282f94323cfcdf7bc0db639f5c9f29" [3]=> string(32) "7bfd5a0e3ec2949b31a7c8d1a2fd7145" [4]=> string(54) "write 7bfd5a0e3ec2949b31a7c8d1a2fd7145: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7bfd5a0e3ec2949b31a7c8d1a2fd7145" [8]=> string(7) "gc 1440" [9]=> string(40) "destroy 7bfd5a0e3ec2949b31a7c8d1a2fd7145" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" }
Output for 5.4.4
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d336e72d099c8d69c469de45dd4e16c1" [2]=> string(32) "d336e72d099c8d69c469de45dd4e16c1" [3]=> string(32) "9ab6645952ec3355075a372439531b22" [4]=> string(54) "write 9ab6645952ec3355075a372439531b22: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9ab6645952ec3355075a372439531b22" [8]=> string(40) "destroy 9ab6645952ec3355075a372439531b22" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.3
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 74480f96c2291fcd89d3bcfdea1a0f7f" [2]=> string(32) "74480f96c2291fcd89d3bcfdea1a0f7f" [3]=> string(32) "9902b58995a4235ccd8943778d521d82" [4]=> string(54) "write 9902b58995a4235ccd8943778d521d82: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9902b58995a4235ccd8943778d521d82" [8]=> string(40) "destroy 9902b58995a4235ccd8943778d521d82" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.2
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ea55f4fd2fec1d26ecb2fe04637a339d" [2]=> string(32) "ea55f4fd2fec1d26ecb2fe04637a339d" [3]=> string(32) "a203dbf42d1102fbf89bb41a5ac23b78" [4]=> string(54) "write a203dbf42d1102fbf89bb41a5ac23b78: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a203dbf42d1102fbf89bb41a5ac23b78" [8]=> string(40) "destroy a203dbf42d1102fbf89bb41a5ac23b78" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.1
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 043990d236fd5e58caae588d2758d9bf" [2]=> string(32) "043990d236fd5e58caae588d2758d9bf" [3]=> string(32) "98ae1794230ad44f77e7875312004cc1" [4]=> string(54) "write 98ae1794230ad44f77e7875312004cc1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 98ae1794230ad44f77e7875312004cc1" [8]=> string(40) "destroy 98ae1794230ad44f77e7875312004cc1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.4.0
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 650ab411bc7697a8ccc215d39a705332" [2]=> string(32) "650ab411bc7697a8ccc215d39a705332" [3]=> string(32) "d2429a69d72c95527aa2d584e30dd642" [4]=> string(54) "write d2429a69d72c95527aa2d584e30dd642: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d2429a69d72c95527aa2d584e30dd642" [8]=> string(40) "destroy d2429a69d72c95527aa2d584e30dd642" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/8FuW0 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/8FuW0 on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/8FuW0 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/8FuW0 on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/8FuW0 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/8FuW0 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/8FuW0 on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/8FuW0 on line 4
Process exited with code 255.

preferences:
327.07 ms | 401 KiB | 461 Q