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 . "\n"; } public function close() { $this->messages[] = 'close' . "\n"; } public function read($id) { $this->messages[] = 'read ' . $id . "\n"; } public function write($id, $data) { $this->messages[] = 'write ' . $id . ': ' . $data . "\n"; } public function destroy($id) { $this->messages[] = 'destroy ' . $id . "\n"; } public function gc($maxlifetime) { $this->messages[] = 'gc ' . $maxlifetime . "\n"; } } $handler = new MySessionHandler(); session_set_save_handler($handler, true); session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = session_id() . "\n"; session_regenerate_id(); $handler->messages[] = session_id() . "\n"; session_destroy(); session_start(); session_write_close(); 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/nJ08J 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/nJ08J 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/nJ08J 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/nJ08J 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/nJ08J 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/nJ08J on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/nJ08J on line 40 Warning: session_start(): Session cannot be started after headers have already been sent in /in/nJ08J on line 41 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/nJ08J on line 46 Warning: session_destroy(): Trying to destroy uninitialized session in /in/nJ08J on line 48 Warning: session_start(): Session cannot be started after headers have already been sent in /in/nJ08J on line 50 array(2) { [0]=> string(1) " " [1]=> string(1) " " }
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/nJ08J:41 Stack trace: #0 /in/nJ08J(41): session_start() #1 {main} thrown in /in/nJ08J 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/nJ08J on line 41 Warning: session_start(): Session callback expects true/false return value in /in/nJ08J on line 41 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/nJ08J on line 41 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/nJ08J on line 46 Warning: session_destroy(): Trying to destroy uninitialized session in /in/nJ08J on line 48 Warning: session_start(): Cannot start session when headers already sent in /in/nJ08J on line 50 array(4) { [0]=> string(15) "open PHPSESSID " [1]=> string(6) "close " [2]=> string(1) " " [3]=> string(1) " " }
Output for 7.1.0 - 7.1.33
Warning: session_start(): Session callback expects true/false return value in /in/nJ08J on line 41 Warning: session_start(): Session callback expects true/false return value in /in/nJ08J on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/nJ08J on line 41
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/nJ08J on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/nJ08J 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.28
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 8acd84f9c4c079a53658adc417da651f " [2]=> string(33) "8acd84f9c4c079a53658adc417da651f " [3]=> string(33) "90365a46dcde458c3c6e9919e5d3fd3d " [4]=> string(41) "destroy 90365a46dcde458c3c6e9919e5d3fd3d " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read cce233d3fdbc54569dcde61680679e4c " [8]=> string(41) "write cce233d3fdbc54569dcde61680679e4c: " [9]=> string(6) "close " }
Output for 5.6.21
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read e915f3621450908f218e0d6750281d62 " [2]=> string(33) "e915f3621450908f218e0d6750281d62 " [3]=> string(33) "f5c0a2fa200c93a173aa4167c60f6364 " [4]=> string(41) "destroy f5c0a2fa200c93a173aa4167c60f6364 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 3ab1f0e30abe173fe4be9ca188453e30 " [8]=> string(41) "write 3ab1f0e30abe173fe4be9ca188453e30: " [9]=> string(6) "close " }
Output for 5.6.20
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 2431a6a499d96fa61493c74b0e389e6f " [2]=> string(33) "2431a6a499d96fa61493c74b0e389e6f " [3]=> string(33) "aa7e358a9f7e97f7566937adb302b4fa " [4]=> string(41) "destroy aa7e358a9f7e97f7566937adb302b4fa " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read cb22739733654003f302d711aaa0b5ca " [8]=> string(41) "write cb22739733654003f302d711aaa0b5ca: " [9]=> string(6) "close " }
Output for 5.6.19
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read fc0b4c40abd2ce154d8dd6959824decd " [2]=> string(33) "fc0b4c40abd2ce154d8dd6959824decd " [3]=> string(33) "36354771ca6bea868d0312507d8c50db " [4]=> string(41) "destroy 36354771ca6bea868d0312507d8c50db " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 8a9b28a749e56404490c8d50a10788df " [8]=> string(41) "write 8a9b28a749e56404490c8d50a10788df: " [9]=> string(6) "close " }
Output for 5.6.18
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read ea17336b6f38a2b74fb264c76c686f4c " [2]=> string(33) "ea17336b6f38a2b74fb264c76c686f4c " [3]=> string(33) "a10b568c44a647ce9fa92f687f412811 " [4]=> string(41) "destroy a10b568c44a647ce9fa92f687f412811 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 4ca09914b827c0375a732a33794471eb " [8]=> string(41) "write 4ca09914b827c0375a732a33794471eb: " [9]=> string(6) "close " }
Output for 5.6.17
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 133b8f3982863b1cec3cbede1f3be58f " [2]=> string(33) "133b8f3982863b1cec3cbede1f3be58f " [3]=> string(33) "1333b6c349085aca483a45b0c4599649 " [4]=> string(41) "destroy 1333b6c349085aca483a45b0c4599649 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 01ca28346f110bb9fd4babbe821e78a7 " [8]=> string(41) "write 01ca28346f110bb9fd4babbe821e78a7: " [9]=> string(6) "close " }
Output for 5.6.16
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read c46507733af9d6a0199db13204ba1a25 " [2]=> string(33) "c46507733af9d6a0199db13204ba1a25 " [3]=> string(33) "27d5f4f44f5b3b57a544fa6f391d7a2b " [4]=> string(41) "destroy 27d5f4f44f5b3b57a544fa6f391d7a2b " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 9cd33dd283ba9632173db6d817c707be " [8]=> string(41) "write 9cd33dd283ba9632173db6d817c707be: " [9]=> string(6) "close " }
Output for 5.6.15
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read a77306ecf188f13dddd8d0fc3ecb0810 " [2]=> string(33) "a77306ecf188f13dddd8d0fc3ecb0810 " [3]=> string(33) "78a059bb54f17dd9c9dc01ce9a8e143e " [4]=> string(41) "destroy 78a059bb54f17dd9c9dc01ce9a8e143e " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 8ccfb826342fa0365a8a97cffee5f278 " [8]=> string(41) "write 8ccfb826342fa0365a8a97cffee5f278: " [9]=> string(6) "close " }
Output for 5.6.14
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 14715edbb88256ff2e01819b6e6fcb8f " [2]=> string(33) "14715edbb88256ff2e01819b6e6fcb8f " [3]=> string(33) "be3da5424bd918ae00aa45dd67acb420 " [4]=> string(41) "destroy be3da5424bd918ae00aa45dd67acb420 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read c2938bfacddb54a48da2249863e84400 " [8]=> string(41) "write c2938bfacddb54a48da2249863e84400: " [9]=> string(6) "close " }
Output for 5.6.13
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read d4a7cf85a9c4b65b86277f6b2c82a1ec " [2]=> string(33) "d4a7cf85a9c4b65b86277f6b2c82a1ec " [3]=> string(33) "3a599ec7b312cc5b9bf166f7a92c33e3 " [4]=> string(41) "destroy 3a599ec7b312cc5b9bf166f7a92c33e3 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 2ee9ad3aaa0bf3b71cec0f257e91390c " [8]=> string(41) "write 2ee9ad3aaa0bf3b71cec0f257e91390c: " [9]=> string(6) "close " }
Output for 5.6.12
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read daf20d823ffa35193faaa1f4dfc41909 " [2]=> string(33) "daf20d823ffa35193faaa1f4dfc41909 " [3]=> string(33) "f178bac190f5ee46b99a6ea621fa1a5c " [4]=> string(41) "destroy f178bac190f5ee46b99a6ea621fa1a5c " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read b0768e53cc1aa3126c4764238b47b7e9 " [8]=> string(41) "write b0768e53cc1aa3126c4764238b47b7e9: " [9]=> string(6) "close " }
Output for 5.6.11
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 6a56a5aed0e233a0f6a3ae32c9de31fd " [2]=> string(33) "6a56a5aed0e233a0f6a3ae32c9de31fd " [3]=> string(33) "ff46b6381f149118ab77ee34b6614ba9 " [4]=> string(41) "destroy ff46b6381f149118ab77ee34b6614ba9 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 6dfc9fa11faa22d32d434c001e5e2295 " [8]=> string(41) "write 6dfc9fa11faa22d32d434c001e5e2295: " [9]=> string(6) "close " }
Output for 5.6.10
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 078f42e17cd980f82be3d23a88e0d786 " [2]=> string(33) "078f42e17cd980f82be3d23a88e0d786 " [3]=> string(33) "c57fd0d48b6cb876c172780e415ee79b " [4]=> string(41) "destroy c57fd0d48b6cb876c172780e415ee79b " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read ae4315a3831b3405e332575942024e5b " [8]=> string(41) "write ae4315a3831b3405e332575942024e5b: " [9]=> string(6) "close " }
Output for 5.6.9
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 45c529d9e088594bfa50e829b2ac8150 " [2]=> string(33) "45c529d9e088594bfa50e829b2ac8150 " [3]=> string(33) "b86efa4e8cf5061b9eed2b66a9f19d7c " [4]=> string(41) "destroy b86efa4e8cf5061b9eed2b66a9f19d7c " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 9dc3da5d7019dd270f71c3ad3741fd85 " [8]=> string(41) "write 9dc3da5d7019dd270f71c3ad3741fd85: " [9]=> string(6) "close " }
Output for 5.6.8
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 0098332a2dbc812ee8dbc30b80aafea7 " [2]=> string(33) "0098332a2dbc812ee8dbc30b80aafea7 " [3]=> string(33) "68f7ee60c4f85b1221d28e662990f984 " [4]=> string(41) "destroy 68f7ee60c4f85b1221d28e662990f984 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 299bf4cf2c3ab1c0d08cae1e1e0359d2 " [8]=> string(41) "write 299bf4cf2c3ab1c0d08cae1e1e0359d2: " [9]=> string(6) "close " }
Output for 5.6.7
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 8e02df4e5d1f60b103adf7ad27ffae23 " [2]=> string(33) "8e02df4e5d1f60b103adf7ad27ffae23 " [3]=> string(33) "5672d2c349aad5cfb41d12458514afe8 " [4]=> string(41) "destroy 5672d2c349aad5cfb41d12458514afe8 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 9336ff8b45678aac9bee5d117804152c " [8]=> string(41) "write 9336ff8b45678aac9bee5d117804152c: " [9]=> string(6) "close " }
Output for 5.6.6
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 2ec935ada5b0e089cb0f1d83fd471262 " [2]=> string(33) "2ec935ada5b0e089cb0f1d83fd471262 " [3]=> string(33) "3c9e4d569610e88b4920528d66e47a3b " [4]=> string(41) "destroy 3c9e4d569610e88b4920528d66e47a3b " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read a58fd5f642ee9887dfd2dd247bb9a7ff " [8]=> string(41) "write a58fd5f642ee9887dfd2dd247bb9a7ff: " [9]=> string(6) "close " }
Output for 5.6.5
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read cedc5826d49d03360d6bf5506626c9b1 " [2]=> string(33) "cedc5826d49d03360d6bf5506626c9b1 " [3]=> string(33) "5cac3a005479302b2af6a41e23279531 " [4]=> string(41) "destroy 5cac3a005479302b2af6a41e23279531 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 4560c4b9467e728f8c0b57e800aae5b7 " [8]=> string(41) "write 4560c4b9467e728f8c0b57e800aae5b7: " [9]=> string(6) "close " }
Output for 5.6.4
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 4e523749baeed28f52e7cf46d9c115f9 " [2]=> string(33) "4e523749baeed28f52e7cf46d9c115f9 " [3]=> string(33) "8807efbe58d5960825d34779a9ad0cff " [4]=> string(41) "destroy 8807efbe58d5960825d34779a9ad0cff " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read eabd75d69b37f504ef793e15fbb194ce " [8]=> string(41) "write eabd75d69b37f504ef793e15fbb194ce: " [9]=> string(6) "close " }
Output for 5.6.3
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 41d27bbaeabdac1c8bb159fb0dd62567 " [2]=> string(33) "41d27bbaeabdac1c8bb159fb0dd62567 " [3]=> string(33) "2ffc6df95f2713d9113045e79d6e36d0 " [4]=> string(41) "destroy 2ffc6df95f2713d9113045e79d6e36d0 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 10d9aa8f76bfa8d55b42e00ad3bd18d7 " [8]=> string(41) "write 10d9aa8f76bfa8d55b42e00ad3bd18d7: " [9]=> string(6) "close " }
Output for 5.6.2
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 2c127c03e23b3be2933a64f9fe1a6653 " [2]=> string(33) "2c127c03e23b3be2933a64f9fe1a6653 " [3]=> string(33) "580084706a17777d329441961f40b4c7 " [4]=> string(41) "destroy 580084706a17777d329441961f40b4c7 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 7d4fd1e431568f3b9f795cbb9f7c3242 " [8]=> string(41) "write 7d4fd1e431568f3b9f795cbb9f7c3242: " [9]=> string(6) "close " }
Output for 5.6.1
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read a1eae5cc1e652e6261e46593314cc64d " [2]=> string(33) "a1eae5cc1e652e6261e46593314cc64d " [3]=> string(33) "a5b3ff7058145632927a9fc1d0e2c64a " [4]=> string(41) "destroy a5b3ff7058145632927a9fc1d0e2c64a " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read fabde66eea306e1fb06411e6c4c6a3aa " [8]=> string(41) "write fabde66eea306e1fb06411e6c4c6a3aa: " [9]=> string(6) "close " }
Output for 5.6.0
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 1a04c4a35adc2aad98c119c991e118ab " [2]=> string(33) "1a04c4a35adc2aad98c119c991e118ab " [3]=> string(33) "58caf4606631b560adb1ab9cb2d64bc3 " [4]=> string(41) "destroy 58caf4606631b560adb1ab9cb2d64bc3 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 53442c9a0d4dbdcc527db4383c0a94c9 " [8]=> string(41) "write 53442c9a0d4dbdcc527db4383c0a94c9: " [9]=> string(6) "close " }
Output for 5.5.35
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 7270d10f874aa9e9899b7df0b6d23093 " [2]=> string(33) "7270d10f874aa9e9899b7df0b6d23093 " [3]=> string(33) "d1f02122c880036da91de20e0a450753 " [4]=> string(41) "destroy d1f02122c880036da91de20e0a450753 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 7ba3f56c50de4f09395f42bfb84de120 " [8]=> string(41) "write 7ba3f56c50de4f09395f42bfb84de120: " [9]=> string(6) "close " }
Output for 5.5.34
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 3a981f94f4bfea95e8412f9fcd99903e " [2]=> string(33) "3a981f94f4bfea95e8412f9fcd99903e " [3]=> string(33) "09860cc1aea4c498b9c1d8f10eae739e " [4]=> string(41) "destroy 09860cc1aea4c498b9c1d8f10eae739e " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 012490a449e1938101b17c10c7afd371 " [8]=> string(41) "write 012490a449e1938101b17c10c7afd371: " [9]=> string(6) "close " }
Output for 5.5.33
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read a85de5ebbf6b4521015617c10546f9a5 " [2]=> string(33) "a85de5ebbf6b4521015617c10546f9a5 " [3]=> string(33) "48d2581056def28dc17a547d86390438 " [4]=> string(41) "destroy 48d2581056def28dc17a547d86390438 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 740058eb35864b814e2c89511e04d2bc " [8]=> string(41) "write 740058eb35864b814e2c89511e04d2bc: " [9]=> string(6) "close " }
Output for 5.5.32
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 0a05ebaad029b2e72098dc68a49b2931 " [2]=> string(33) "0a05ebaad029b2e72098dc68a49b2931 " [3]=> string(33) "6a41ede52a769f427852feb000bfd51c " [4]=> string(41) "destroy 6a41ede52a769f427852feb000bfd51c " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 825ac8b431b52c7ae72a31a358637141 " [8]=> string(41) "write 825ac8b431b52c7ae72a31a358637141: " [9]=> string(6) "close " }
Output for 5.5.31
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read ef2b54384c327393fe6d6f0f8e72dbdc " [2]=> string(33) "ef2b54384c327393fe6d6f0f8e72dbdc " [3]=> string(33) "8bf92b0dde3d695bce2bfe6cb1d3d08d " [4]=> string(41) "destroy 8bf92b0dde3d695bce2bfe6cb1d3d08d " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 85d22ec7f7231d86a08a3fde810c71f7 " [8]=> string(41) "write 85d22ec7f7231d86a08a3fde810c71f7: " [9]=> string(6) "close " }
Output for 5.5.30
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read c8b7ec191274108f28f040bb1a495440 " [2]=> string(33) "c8b7ec191274108f28f040bb1a495440 " [3]=> string(33) "fce11d6420bf03f1e829d1761bd25429 " [4]=> string(41) "destroy fce11d6420bf03f1e829d1761bd25429 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read e345ea49897fd6d9984e4fd540398940 " [8]=> string(41) "write e345ea49897fd6d9984e4fd540398940: " [9]=> string(6) "close " }
Output for 5.5.29
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 05212adae49d432be0566253a049ad8b " [2]=> string(33) "05212adae49d432be0566253a049ad8b " [3]=> string(33) "70135f23d64e37e5bdb9075092d6bcb6 " [4]=> string(41) "destroy 70135f23d64e37e5bdb9075092d6bcb6 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 05c152d4b5848bbb46a608b8f5ef3922 " [8]=> string(41) "write 05c152d4b5848bbb46a608b8f5ef3922: " [9]=> string(6) "close " }
Output for 5.5.28
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 322f9cdcb4bef269bad6d02d8aacdd95 " [2]=> string(33) "322f9cdcb4bef269bad6d02d8aacdd95 " [3]=> string(33) "917c9c070201ca3471d5f195ac2304c0 " [4]=> string(41) "destroy 917c9c070201ca3471d5f195ac2304c0 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 4d4959465728cebfbdd7f10a5d00dacd " [8]=> string(41) "write 4d4959465728cebfbdd7f10a5d00dacd: " [9]=> string(6) "close " }
Output for 5.5.27
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 576aa4db8d776ce8970341a49198bdcd " [2]=> string(33) "576aa4db8d776ce8970341a49198bdcd " [3]=> string(33) "14f299472372519011e4204b979cd549 " [4]=> string(41) "destroy 14f299472372519011e4204b979cd549 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 718fbfafb2f427c6d9fd6c594ff04aed " [8]=> string(41) "write 718fbfafb2f427c6d9fd6c594ff04aed: " [9]=> string(6) "close " }
Output for 5.5.26
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 88069641d6ab9602ab84cd19663fe86e " [2]=> string(33) "88069641d6ab9602ab84cd19663fe86e " [3]=> string(33) "74ad6096c4606f97fde635335c6d953a " [4]=> string(41) "destroy 74ad6096c4606f97fde635335c6d953a " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read f4ebb4747ec5f9add55c7a4abcf61cb0 " [8]=> string(41) "write f4ebb4747ec5f9add55c7a4abcf61cb0: " [9]=> string(6) "close " }
Output for 5.5.25
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read be474e7884e828b7b00d8eca59e61d12 " [2]=> string(33) "be474e7884e828b7b00d8eca59e61d12 " [3]=> string(33) "2609356e8ccf1c5930e21c1084c71d2e " [4]=> string(41) "destroy 2609356e8ccf1c5930e21c1084c71d2e " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 78683649d53f1f1c5eaaa414adc14cdc " [8]=> string(41) "write 78683649d53f1f1c5eaaa414adc14cdc: " [9]=> string(6) "close " }
Output for 5.5.24
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 7821e8cb0319c0d7185e5f48ec4e02a3 " [2]=> string(33) "7821e8cb0319c0d7185e5f48ec4e02a3 " [3]=> string(33) "3987a4f9d6340c84e49fe2ef195e1103 " [4]=> string(41) "destroy 3987a4f9d6340c84e49fe2ef195e1103 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 022af107c4bed7764ad32b5f44460fba " [8]=> string(41) "write 022af107c4bed7764ad32b5f44460fba: " [9]=> string(6) "close " }
Output for 5.5.23
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 9f6554d14314c86309c06014db46fb46 " [2]=> string(33) "9f6554d14314c86309c06014db46fb46 " [3]=> string(33) "0cff972843e5994f0d06805bff922505 " [4]=> string(41) "destroy 0cff972843e5994f0d06805bff922505 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 6fd48bdc0b34657d9fc995cd652d69b7 " [8]=> string(41) "write 6fd48bdc0b34657d9fc995cd652d69b7: " [9]=> string(6) "close " }
Output for 5.5.22
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 39fcf7410b5f5bcc0eb1da26ac784a51 " [2]=> string(33) "39fcf7410b5f5bcc0eb1da26ac784a51 " [3]=> string(33) "6d1e8496f013f43305e46226e991e06f " [4]=> string(41) "destroy 6d1e8496f013f43305e46226e991e06f " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 9e6814b02635916f95e7c0e54d0e8bfc " [8]=> string(41) "write 9e6814b02635916f95e7c0e54d0e8bfc: " [9]=> string(6) "close " }
Output for 5.5.21
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 68b8c7a8b3dc3c556fed9e52fac19eb7 " [2]=> string(33) "68b8c7a8b3dc3c556fed9e52fac19eb7 " [3]=> string(33) "94c23091b6ca082f09847c2e16ccc809 " [4]=> string(41) "destroy 94c23091b6ca082f09847c2e16ccc809 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 2a008601cbcaebe0b50330f141b4ecd5 " [8]=> string(41) "write 2a008601cbcaebe0b50330f141b4ecd5: " [9]=> string(6) "close " }
Output for 5.5.20
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 1d6623cd59efb041cea66c0ab4ea5a31 " [2]=> string(33) "1d6623cd59efb041cea66c0ab4ea5a31 " [3]=> string(33) "ff43541c9db16cb7866c60b3e70033e5 " [4]=> string(41) "destroy ff43541c9db16cb7866c60b3e70033e5 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read ff3e3c5ca24ff5bafffa6bc9c8f54cc3 " [8]=> string(41) "write ff3e3c5ca24ff5bafffa6bc9c8f54cc3: " [9]=> string(6) "close " }
Output for 5.5.19
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 615001b665bdac15591646a7429e4b8e " [2]=> string(33) "615001b665bdac15591646a7429e4b8e " [3]=> string(33) "b6f06ff742fe87f022bb25f4f1f2daab " [4]=> string(41) "destroy b6f06ff742fe87f022bb25f4f1f2daab " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read ac46c41e19faa05928374767b0a41330 " [8]=> string(41) "write ac46c41e19faa05928374767b0a41330: " [9]=> string(6) "close " }
Output for 5.5.18
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 7ba50aad9284580ec710158451258f3d " [2]=> string(33) "7ba50aad9284580ec710158451258f3d " [3]=> string(33) "1a955950771d6a858c78d812d63209fb " [4]=> string(41) "destroy 1a955950771d6a858c78d812d63209fb " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 47a7e110e474893ee0836efadf5caa7e " [8]=> string(41) "write 47a7e110e474893ee0836efadf5caa7e: " [9]=> string(6) "close " }
Output for 5.5.16
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 17153a1e87c9df84f2a288e0eca46626 " [2]=> string(33) "17153a1e87c9df84f2a288e0eca46626 " [3]=> string(33) "7bf0746ee24de3f2c23537aea147d72b " [4]=> string(41) "destroy 7bf0746ee24de3f2c23537aea147d72b " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read fab606dc7632615ab4fff072d16653ad " [8]=> string(41) "write fab606dc7632615ab4fff072d16653ad: " [9]=> string(6) "close " }
Output for 5.5.15
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 49f44d96a7308e59ee7610165088588a " [2]=> string(33) "49f44d96a7308e59ee7610165088588a " [3]=> string(33) "d2ed08cfdf7df0d285649d0a0b1182f7 " [4]=> string(41) "destroy d2ed08cfdf7df0d285649d0a0b1182f7 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read d83b42023cbf5116abf90a815efb5f6b " [8]=> string(41) "write d83b42023cbf5116abf90a815efb5f6b: " [9]=> string(6) "close " }
Output for 5.5.14
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 3471c62eb2cbc6d0d22757ba854ed71f " [2]=> string(33) "3471c62eb2cbc6d0d22757ba854ed71f " [3]=> string(33) "5d0acdd6f6860fa8570c73033412667e " [4]=> string(41) "destroy 5d0acdd6f6860fa8570c73033412667e " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 49984a77277b69e5efccf9bff07596e0 " [8]=> string(41) "write 49984a77277b69e5efccf9bff07596e0: " [9]=> string(6) "close " }
Output for 5.5.13
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 580a4906eebe70760a93a9722f3c3009 " [2]=> string(33) "580a4906eebe70760a93a9722f3c3009 " [3]=> string(33) "4a22fcc31893a5aa27dd01dfe7f06390 " [4]=> string(41) "destroy 4a22fcc31893a5aa27dd01dfe7f06390 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read ab4d40b57c876bdf98d5a25996063236 " [8]=> string(41) "write ab4d40b57c876bdf98d5a25996063236: " [9]=> string(6) "close " }
Output for 5.5.12
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read e3787a791a7e040992d417de60405544 " [2]=> string(33) "e3787a791a7e040992d417de60405544 " [3]=> string(33) "92e048e42e39a61148ebe25af2b64461 " [4]=> string(41) "destroy 92e048e42e39a61148ebe25af2b64461 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 0aa1893ecce4575152c44ebf30e6f820 " [8]=> string(41) "write 0aa1893ecce4575152c44ebf30e6f820: " [9]=> string(6) "close " }
Output for 5.5.11
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 1ba627eeaaf846ec66b46586a2344e49 " [2]=> string(33) "1ba627eeaaf846ec66b46586a2344e49 " [3]=> string(33) "236c871bdb3c0df62261ee30bcdb7b9e " [4]=> string(41) "destroy 236c871bdb3c0df62261ee30bcdb7b9e " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read d32580462cc13ad84b86bc1b52edd695 " [8]=> string(41) "write d32580462cc13ad84b86bc1b52edd695: " [9]=> string(6) "close " }
Output for 5.5.10
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read e67da6234a07decc46493745b56014a3 " [2]=> string(33) "e67da6234a07decc46493745b56014a3 " [3]=> string(33) "fb99d5c9a10dd258ea1f7d8aadb61d06 " [4]=> string(41) "destroy fb99d5c9a10dd258ea1f7d8aadb61d06 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 36e6d54dbdbfa96a32c41118b0aa4073 " [8]=> string(41) "write 36e6d54dbdbfa96a32c41118b0aa4073: " [9]=> string(6) "close " }
Output for 5.5.9
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read ec446505c9a6ced6d6cea71f0b97516a " [2]=> string(33) "ec446505c9a6ced6d6cea71f0b97516a " [3]=> string(33) "6c300d95e0bf63988a14dd21f544497f " [4]=> string(41) "destroy 6c300d95e0bf63988a14dd21f544497f " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 3fc33fba42454f8e7ca9e366cd0f8321 " [8]=> string(41) "write 3fc33fba42454f8e7ca9e366cd0f8321: " [9]=> string(6) "close " }
Output for 5.5.8
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 6f87cafc9f78e1d82aa7e6f1ff926b06 " [2]=> string(33) "6f87cafc9f78e1d82aa7e6f1ff926b06 " [3]=> string(33) "b9de7c46a4e0ddd43700e4717b235e7f " [4]=> string(41) "destroy b9de7c46a4e0ddd43700e4717b235e7f " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 62f0f843a08272e6002f416c7a3a89c5 " [8]=> string(41) "write 62f0f843a08272e6002f416c7a3a89c5: " [9]=> string(6) "close " }
Output for 5.5.7
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 882d757d828a72ed0edc598ec81e315a " [2]=> string(33) "882d757d828a72ed0edc598ec81e315a " [3]=> string(33) "a17f203c12bc332465bd786d9378cfac " [4]=> string(41) "destroy a17f203c12bc332465bd786d9378cfac " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 626e44921b4c82c03ba9194adddcd888 " [8]=> string(41) "write 626e44921b4c82c03ba9194adddcd888: " [9]=> string(6) "close " }
Output for 5.5.6
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 60c7a0c30c5005f8f0f9a40a2e3bf1f3 " [2]=> string(33) "60c7a0c30c5005f8f0f9a40a2e3bf1f3 " [3]=> string(33) "2c8c2dad1c82282d882908ca0331f262 " [4]=> string(41) "destroy 2c8c2dad1c82282d882908ca0331f262 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read eb14ce4244188aab88abbe25f989d9a6 " [8]=> string(41) "write eb14ce4244188aab88abbe25f989d9a6: " [9]=> string(6) "close " }
Output for 5.5.5
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read f0c46ab76ab84f84d5bb3c0f8e93b806 " [2]=> string(33) "f0c46ab76ab84f84d5bb3c0f8e93b806 " [3]=> string(33) "9ec3fe15d269828a66e8e53cde7e8e4a " [4]=> string(41) "destroy 9ec3fe15d269828a66e8e53cde7e8e4a " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read d3ffc7c503390a2bd99cafa4d53fc40a " [8]=> string(41) "write d3ffc7c503390a2bd99cafa4d53fc40a: " [9]=> string(6) "close " }
Output for 5.5.4
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 9cb180a01bd2a0a85503f14a7b90d98d " [2]=> string(33) "9cb180a01bd2a0a85503f14a7b90d98d " [3]=> string(33) "a7ab225638f99f82a47ee46b05ab2345 " [4]=> string(41) "destroy a7ab225638f99f82a47ee46b05ab2345 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 3f2ac437c94ae721d9891d41ee70e59d " [8]=> string(41) "write 3f2ac437c94ae721d9891d41ee70e59d: " [9]=> string(6) "close " }
Output for 5.5.3
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read f7f00e53fe9625ec4e2c0b8a27194a60 " [2]=> string(33) "f7f00e53fe9625ec4e2c0b8a27194a60 " [3]=> string(33) "e82b5f8499f54611d4db69575776a520 " [4]=> string(41) "destroy e82b5f8499f54611d4db69575776a520 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 4d2995c89d777f69b281ef49348ab7c4 " [8]=> string(41) "write 4d2995c89d777f69b281ef49348ab7c4: " [9]=> string(6) "close " }
Output for 5.5.2
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 45504016267930eb63d9393d64af6be5 " [2]=> string(33) "45504016267930eb63d9393d64af6be5 " [3]=> string(33) "68c2447096be14421c6179483296b696 " [4]=> string(41) "destroy 68c2447096be14421c6179483296b696 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 8c322cbba84728eaa65d84d1f7a8926c " [8]=> string(41) "write 8c322cbba84728eaa65d84d1f7a8926c: " [9]=> string(6) "close " }
Output for 5.5.1
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 02d9615fad913bfd299f88150ac1b552 " [2]=> string(33) "02d9615fad913bfd299f88150ac1b552 " [3]=> string(33) "3a5529564bfb46d208a7ecb805a4c1cc " [4]=> string(41) "destroy 3a5529564bfb46d208a7ecb805a4c1cc " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read c3e930a675d49021153ecc4ad0d4116c " [8]=> string(41) "write c3e930a675d49021153ecc4ad0d4116c: " [9]=> string(6) "close " }
Output for 5.5.0
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read d1b42391842170a3fb3b242c1fe2dcd4 " [2]=> string(33) "d1b42391842170a3fb3b242c1fe2dcd4 " [3]=> string(33) "7f0854250050b0c79502f36270040978 " [4]=> string(41) "destroy 7f0854250050b0c79502f36270040978 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read d07b828ecba47dda91bf7eeafdef4e80 " [8]=> string(41) "write d07b828ecba47dda91bf7eeafdef4e80: " [9]=> string(6) "close " }
Output for 5.4.45
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 14e8701001e935f7c92f11cb498ea7b7 " [2]=> string(33) "14e8701001e935f7c92f11cb498ea7b7 " [3]=> string(33) "4d8762491cb4f39a91cab513bb180b58 " [4]=> string(41) "destroy 4d8762491cb4f39a91cab513bb180b58 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 8734240a221d89c8e4cc735db582e5f3 " [8]=> string(41) "write 8734240a221d89c8e4cc735db582e5f3: " [9]=> string(6) "close " }
Output for 5.4.44
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 29cee59e971c85be68e38419ab8261a9 " [2]=> string(33) "29cee59e971c85be68e38419ab8261a9 " [3]=> string(33) "a878787a54ece62b567fc653a3032799 " [4]=> string(41) "destroy a878787a54ece62b567fc653a3032799 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read f1ec8f03635c0d4fdcf32e58dec67624 " [8]=> string(41) "write f1ec8f03635c0d4fdcf32e58dec67624: " [9]=> string(6) "close " }
Output for 5.4.43
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 4ba7479e4e762e8455b6bbe1bcab981e " [2]=> string(33) "4ba7479e4e762e8455b6bbe1bcab981e " [3]=> string(33) "f6e3e9a13cdcfd3d69cd467c21643c3f " [4]=> string(41) "destroy f6e3e9a13cdcfd3d69cd467c21643c3f " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read b76e444f42dbae8884d08b872d3860d6 " [8]=> string(41) "write b76e444f42dbae8884d08b872d3860d6: " [9]=> string(6) "close " }
Output for 5.4.42
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 585d1626ff98d55818a2ce5ca241d0bb " [2]=> string(33) "585d1626ff98d55818a2ce5ca241d0bb " [3]=> string(33) "f056366e88f94db10ae90835eaff8977 " [4]=> string(41) "destroy f056366e88f94db10ae90835eaff8977 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 4d433dae9050a2a46e5c390f5425fc96 " [8]=> string(41) "write 4d433dae9050a2a46e5c390f5425fc96: " [9]=> string(6) "close " }
Output for 5.4.41
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 7963235f5a449b2c6b8839871feebc70 " [2]=> string(33) "7963235f5a449b2c6b8839871feebc70 " [3]=> string(33) "c3236544cba040f5ac41b31bb7fe80db " [4]=> string(41) "destroy c3236544cba040f5ac41b31bb7fe80db " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 6993d44e3047804e0e16cbedd13a1474 " [8]=> string(41) "write 6993d44e3047804e0e16cbedd13a1474: " [9]=> string(6) "close " }
Output for 5.4.40
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 54634eb7d400eecfdb0c5e298d83d6e8 " [2]=> string(33) "54634eb7d400eecfdb0c5e298d83d6e8 " [3]=> string(33) "72ac0b9eec46e1472acae8a1de7bd538 " [4]=> string(41) "destroy 72ac0b9eec46e1472acae8a1de7bd538 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 3838810c00c1123a12e04a0539aef930 " [8]=> string(41) "write 3838810c00c1123a12e04a0539aef930: " [9]=> string(6) "close " }
Output for 5.4.39
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 55182618a47914bd8acdd0a224260414 " [2]=> string(33) "55182618a47914bd8acdd0a224260414 " [3]=> string(33) "38fc0522d1c2a41dc5e434a5901bac08 " [4]=> string(41) "destroy 38fc0522d1c2a41dc5e434a5901bac08 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 973e5939836b0819deaa6c7edbb861f7 " [8]=> string(41) "write 973e5939836b0819deaa6c7edbb861f7: " [9]=> string(6) "close " }
Output for 5.4.38
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 26828f1484c4d9f236bb874f966b1c5f " [2]=> string(33) "26828f1484c4d9f236bb874f966b1c5f " [3]=> string(33) "003e2e8d7ecd27f163f7658d1801bd92 " [4]=> string(41) "destroy 003e2e8d7ecd27f163f7658d1801bd92 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 12e593196d776f3c01a8d929beb4bc90 " [8]=> string(41) "write 12e593196d776f3c01a8d929beb4bc90: " [9]=> string(6) "close " }
Output for 5.4.37
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 21ff1b6f6cad010cb1eb287790f717ad " [2]=> string(33) "21ff1b6f6cad010cb1eb287790f717ad " [3]=> string(33) "2948d82287d8be02f12d6a47f3cd8fca " [4]=> string(41) "destroy 2948d82287d8be02f12d6a47f3cd8fca " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read dbfd0f95831d483dded6cf070804d6b8 " [8]=> string(41) "write dbfd0f95831d483dded6cf070804d6b8: " [9]=> string(6) "close " }
Output for 5.4.36
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read f5af043c6b13df9b836c2f4cc71adfba " [2]=> string(33) "f5af043c6b13df9b836c2f4cc71adfba " [3]=> string(33) "7950e04ee419f40655bd46afa5e46a23 " [4]=> string(41) "destroy 7950e04ee419f40655bd46afa5e46a23 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 51357cd173715f5a955c49a2cccf693d " [8]=> string(41) "write 51357cd173715f5a955c49a2cccf693d: " [9]=> string(6) "close " }
Output for 5.4.35
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 3cd4410bc8f921d690966ad676cbbd0d " [2]=> string(33) "3cd4410bc8f921d690966ad676cbbd0d " [3]=> string(33) "11d72904c7bed0de9cbf502459a94f70 " [4]=> string(41) "destroy 11d72904c7bed0de9cbf502459a94f70 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read a47281cf6b7ddf00ae35d5dd447a1dd3 " [8]=> string(41) "write a47281cf6b7ddf00ae35d5dd447a1dd3: " [9]=> string(6) "close " }
Output for 5.4.34
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 9b99d790f79950ad51af678e89ba7de6 " [2]=> string(33) "9b99d790f79950ad51af678e89ba7de6 " [3]=> string(33) "7a9ecdce9b9851c72760d949d378a65d " [4]=> string(41) "destroy 7a9ecdce9b9851c72760d949d378a65d " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 52af7308300c08819209cde263582bbb " [8]=> string(41) "write 52af7308300c08819209cde263582bbb: " [9]=> string(6) "close " }
Output for 5.4.32
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read a235f6beb9551e2de126cb040f0efcb4 " [2]=> string(33) "a235f6beb9551e2de126cb040f0efcb4 " [3]=> string(33) "6909c0f1b8d39b06b778022fdef92f57 " [4]=> string(41) "destroy 6909c0f1b8d39b06b778022fdef92f57 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read e0aba391e5ad2d2452db902806486ca6 " [8]=> string(41) "write e0aba391e5ad2d2452db902806486ca6: " [9]=> string(6) "close " }
Output for 5.4.31
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 8875306daa7172e17e029e7d878cca69 " [2]=> string(33) "8875306daa7172e17e029e7d878cca69 " [3]=> string(33) "be57e1cbc72d21eb06431bf0d918530b " [4]=> string(41) "destroy be57e1cbc72d21eb06431bf0d918530b " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 075fedd05e9ea35454b6094516f11907 " [8]=> string(41) "write 075fedd05e9ea35454b6094516f11907: " [9]=> string(6) "close " }
Output for 5.4.30
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read df0624bb1eaaf5372476cc031a78e025 " [2]=> string(33) "df0624bb1eaaf5372476cc031a78e025 " [3]=> string(33) "ef27f3eb61d5e927f9ea2d1676764322 " [4]=> string(41) "destroy ef27f3eb61d5e927f9ea2d1676764322 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 65378a5d6ca9020197898009d568393c " [8]=> string(41) "write 65378a5d6ca9020197898009d568393c: " [9]=> string(6) "close " }
Output for 5.4.29
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 3aef786319cc2f23e46ec4eb4f7bda55 " [2]=> string(33) "3aef786319cc2f23e46ec4eb4f7bda55 " [3]=> string(33) "27235a0a756e18f9aaad4595c3ff712a " [4]=> string(41) "destroy 27235a0a756e18f9aaad4595c3ff712a " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read a165d9a9d08a085f33e4101b043d372d " [8]=> string(41) "write a165d9a9d08a085f33e4101b043d372d: " [9]=> string(6) "close " }
Output for 5.4.28
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read eac94c607b433de351dddf59ab3d2c8e " [2]=> string(33) "eac94c607b433de351dddf59ab3d2c8e " [3]=> string(33) "1fdc7d2f5f447519b85dcfc0986d9e93 " [4]=> string(41) "destroy 1fdc7d2f5f447519b85dcfc0986d9e93 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 7896143b7f1c4b683289ed14300cdd76 " [8]=> string(41) "write 7896143b7f1c4b683289ed14300cdd76: " [9]=> string(6) "close " }
Output for 5.4.27
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 7dcb224b4e69e6d5f8851cb60b8e6004 " [2]=> string(33) "7dcb224b4e69e6d5f8851cb60b8e6004 " [3]=> string(33) "23062dbdd9c926893389486f8d401b97 " [4]=> string(41) "destroy 23062dbdd9c926893389486f8d401b97 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 97129856e8aaa70a0b2fdd9aa564381f " [8]=> string(41) "write 97129856e8aaa70a0b2fdd9aa564381f: " [9]=> string(6) "close " }
Output for 5.4.26
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 86d4e90292fb1c46a8c97251b124ea60 " [2]=> string(33) "86d4e90292fb1c46a8c97251b124ea60 " [3]=> string(33) "645bc6d7f6059225fd9b129aa0f3bcfd " [4]=> string(41) "destroy 645bc6d7f6059225fd9b129aa0f3bcfd " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 941aac51fe12e291c856a41d2e14cb21 " [8]=> string(41) "write 941aac51fe12e291c856a41d2e14cb21: " [9]=> string(6) "close " }
Output for 5.4.25
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read f183cdb503a5a9c549cdbbe79ebf3e56 " [2]=> string(33) "f183cdb503a5a9c549cdbbe79ebf3e56 " [3]=> string(33) "d0d20749ab34c10517ae172de83296d6 " [4]=> string(41) "destroy d0d20749ab34c10517ae172de83296d6 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read b58baaba11435f69ba2bacd3dfafcc41 " [8]=> string(41) "write b58baaba11435f69ba2bacd3dfafcc41: " [9]=> string(6) "close " }
Output for 5.4.24
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 1ac93e4cf2102b47a91000adc04bff28 " [2]=> string(33) "1ac93e4cf2102b47a91000adc04bff28 " [3]=> string(33) "ce66b61832f4bda4d107852b128c9ac7 " [4]=> string(41) "destroy ce66b61832f4bda4d107852b128c9ac7 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 6589720fd738047dc26dea849dc8707e " [8]=> string(41) "write 6589720fd738047dc26dea849dc8707e: " [9]=> string(6) "close " }
Output for 5.4.23
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 0d509edb25157cec85d8712209a647da " [2]=> string(33) "0d509edb25157cec85d8712209a647da " [3]=> string(33) "2a42dff9546dc0b0595068bf309a0a09 " [4]=> string(41) "destroy 2a42dff9546dc0b0595068bf309a0a09 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 290c356b37ce9e5512807bfdaa2b2080 " [8]=> string(41) "write 290c356b37ce9e5512807bfdaa2b2080: " [9]=> string(6) "close " }
Output for 5.4.22
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 03f845711c097bf79c73c4f50d631768 " [2]=> string(33) "03f845711c097bf79c73c4f50d631768 " [3]=> string(33) "f57bea098be35a5d1e591ea5b914c0dc " [4]=> string(41) "destroy f57bea098be35a5d1e591ea5b914c0dc " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 282532fe10a6387770086060b60b51cc " [8]=> string(41) "write 282532fe10a6387770086060b60b51cc: " [9]=> string(6) "close " }
Output for 5.4.21
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 45a1edec9ab7ee39748a4b796c0f429c " [2]=> string(33) "45a1edec9ab7ee39748a4b796c0f429c " [3]=> string(33) "72e999b28242d3c425d06615efef209c " [4]=> string(41) "destroy 72e999b28242d3c425d06615efef209c " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 63752eb19fea9150268183ea51a8ae41 " [8]=> string(41) "write 63752eb19fea9150268183ea51a8ae41: " [9]=> string(6) "close " }
Output for 5.4.20
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 81044b9e675e456e715a10222c367d96 " [2]=> string(33) "81044b9e675e456e715a10222c367d96 " [3]=> string(33) "2b8f5bbc5eec277427c4527ba4aa8f93 " [4]=> string(41) "destroy 2b8f5bbc5eec277427c4527ba4aa8f93 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 91a088b68862249fcb184e09b41ac77a " [8]=> string(41) "write 91a088b68862249fcb184e09b41ac77a: " [9]=> string(6) "close " }
Output for 5.4.19
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 5ad870bcb2385808613413928e734524 " [2]=> string(33) "5ad870bcb2385808613413928e734524 " [3]=> string(33) "b5f168f0a2114e918f76ad3651c5328d " [4]=> string(41) "destroy b5f168f0a2114e918f76ad3651c5328d " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 716aaa0f1ddfc8369afab9901c2a0295 " [8]=> string(41) "write 716aaa0f1ddfc8369afab9901c2a0295: " [9]=> string(6) "close " }
Output for 5.4.18
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 89cf9c85ac0e8e441a4a248d8c08ddbe " [2]=> string(33) "89cf9c85ac0e8e441a4a248d8c08ddbe " [3]=> string(33) "01b4ac16dadce12a584c25d38b998ffd " [4]=> string(41) "destroy 01b4ac16dadce12a584c25d38b998ffd " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 01096ac4b0438c56cded882ed9db9361 " [8]=> string(41) "write 01096ac4b0438c56cded882ed9db9361: " [9]=> string(6) "close " }
Output for 5.4.17
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 7f90551d01b9dcc56efc569e389847d7 " [2]=> string(33) "7f90551d01b9dcc56efc569e389847d7 " [3]=> string(33) "57e3bd26ac968c4687304c8dea186f69 " [4]=> string(41) "destroy 57e3bd26ac968c4687304c8dea186f69 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 896b871dc8284d0eed8cb960012739e3 " [8]=> string(41) "write 896b871dc8284d0eed8cb960012739e3: " [9]=> string(6) "close " }
Output for 5.4.16
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 403a392383be9552804e21a42675c42a " [2]=> string(33) "403a392383be9552804e21a42675c42a " [3]=> string(33) "ebc49b735d4b5c22e116f8e4291c1cb9 " [4]=> string(41) "destroy ebc49b735d4b5c22e116f8e4291c1cb9 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read cbe423b362857e573f2174605ec99b3e " [8]=> string(41) "write cbe423b362857e573f2174605ec99b3e: " [9]=> string(6) "close " }
Output for 5.4.15
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read b55bd65c4e73f234790a0fdca002b8c1 " [2]=> string(33) "b55bd65c4e73f234790a0fdca002b8c1 " [3]=> string(33) "e51e48f37bcaa53bf56b8a92291b2243 " [4]=> string(41) "destroy e51e48f37bcaa53bf56b8a92291b2243 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 56686c551b0d438d208897c4954ff800 " [8]=> string(41) "write 56686c551b0d438d208897c4954ff800: " [9]=> string(6) "close " }
Output for 5.4.14
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 71f8d474423d0d6168fcb8d80efa05af " [2]=> string(33) "71f8d474423d0d6168fcb8d80efa05af " [3]=> string(33) "d66e8ebead3afe3d66a5dbf9af44e8c5 " [4]=> string(41) "destroy d66e8ebead3afe3d66a5dbf9af44e8c5 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 060bb40825ffe4307609ad081e0e0927 " [8]=> string(41) "write 060bb40825ffe4307609ad081e0e0927: " [9]=> string(6) "close " }
Output for 5.4.13
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 30d0cf5c2b931c63c5da8d94210f160c " [2]=> string(33) "30d0cf5c2b931c63c5da8d94210f160c " [3]=> string(33) "cf78bbea32c11b7a60553fad06f9b179 " [4]=> string(41) "destroy cf78bbea32c11b7a60553fad06f9b179 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 9be0f97fe7afe0b2b932f611728da6b7 " [8]=> string(41) "write 9be0f97fe7afe0b2b932f611728da6b7: " [9]=> string(6) "close " }
Output for 5.4.12
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read cd4ef155370928f080b605c0b5bc3d08 " [2]=> string(33) "cd4ef155370928f080b605c0b5bc3d08 " [3]=> string(33) "99db5743f6bcf0a0b0629e20b69d3337 " [4]=> string(41) "destroy 99db5743f6bcf0a0b0629e20b69d3337 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 9499a050836d958d693baf8f042eadc0 " [8]=> string(41) "write 9499a050836d958d693baf8f042eadc0: " [9]=> string(6) "close " }
Output for 5.4.11
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read c784edbb9a083466df8c7a6898f193bc " [2]=> string(33) "c784edbb9a083466df8c7a6898f193bc " [3]=> string(33) "913c6bf91b5a156838029e5a680b2538 " [4]=> string(41) "destroy 913c6bf91b5a156838029e5a680b2538 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 2c0da1ef0b0c529132cbd8cd083edbe4 " [8]=> string(41) "write 2c0da1ef0b0c529132cbd8cd083edbe4: " [9]=> string(6) "close " }
Output for 5.4.10
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read ad6ba230909b9d51e6ecdcead3d0d0b6 " [2]=> string(33) "ad6ba230909b9d51e6ecdcead3d0d0b6 " [3]=> string(33) "482fd942a60fe6d91ef0b2e7cf7d2d18 " [4]=> string(41) "destroy 482fd942a60fe6d91ef0b2e7cf7d2d18 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read a425d8f47d5dcf2ac111006a7c5dde3c " [8]=> string(41) "write a425d8f47d5dcf2ac111006a7c5dde3c: " [9]=> string(6) "close " }
Output for 5.4.9
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 5f1da5d44edcc0ff94f020644b114a9e " [2]=> string(33) "5f1da5d44edcc0ff94f020644b114a9e " [3]=> string(33) "ed79474139507b4fcc6dfc44a720f1e8 " [4]=> string(41) "destroy ed79474139507b4fcc6dfc44a720f1e8 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 4bb0ae4d985e9950c7305d0bd1c47a2e " [8]=> string(41) "write 4bb0ae4d985e9950c7305d0bd1c47a2e: " [9]=> string(6) "close " }
Output for 5.4.8
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 4ff6efad597718c848b23bf26f06d607 " [2]=> string(33) "4ff6efad597718c848b23bf26f06d607 " [3]=> string(33) "bf7a37cc63707d42602a2b461786eff0 " [4]=> string(41) "destroy bf7a37cc63707d42602a2b461786eff0 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read a852c24d6fd5ecf11332cf9e05e36801 " [8]=> string(41) "write a852c24d6fd5ecf11332cf9e05e36801: " [9]=> string(6) "close " }
Output for 5.4.7
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 1e9660f2406ae42a8a5ff70cf21534ad " [2]=> string(33) "1e9660f2406ae42a8a5ff70cf21534ad " [3]=> string(33) "17721f1b9030adcf5f0329bb0371356d " [4]=> string(41) "destroy 17721f1b9030adcf5f0329bb0371356d " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 57ba949ceb66738bc6e1caffab7db953 " [8]=> string(41) "write 57ba949ceb66738bc6e1caffab7db953: " [9]=> string(6) "close " }
Output for 5.4.6
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read e3f2f24a3d845d9f8f260b6489dd63a3 " [2]=> string(33) "e3f2f24a3d845d9f8f260b6489dd63a3 " [3]=> string(33) "6506deb712ca7b3be7391c346dcc6cfc " [4]=> string(41) "destroy 6506deb712ca7b3be7391c346dcc6cfc " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read d5b7b6641189279105f264612e23ee5a " [8]=> string(41) "write d5b7b6641189279105f264612e23ee5a: " [9]=> string(6) "close " }
Output for 5.4.5
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 5da329eae272ef0c332309245bf21c33 " [2]=> string(33) "5da329eae272ef0c332309245bf21c33 " [3]=> string(33) "1a75927809ac6cc70ee5368b036b2267 " [4]=> string(41) "destroy 1a75927809ac6cc70ee5368b036b2267 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 5502aa56970efef3ce71cd00215237d5 " [8]=> string(41) "write 5502aa56970efef3ce71cd00215237d5: " [9]=> string(6) "close " }
Output for 5.4.4
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 4a40a1a791c73fd8c7cc65a65d73ae6d " [2]=> string(33) "4a40a1a791c73fd8c7cc65a65d73ae6d " [3]=> string(33) "b80c9d2607ed83a5977a16c5c4f802c0 " [4]=> string(41) "destroy b80c9d2607ed83a5977a16c5c4f802c0 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 7d6fb84331e4c8d04bb11b04297df30c " [8]=> string(41) "write 7d6fb84331e4c8d04bb11b04297df30c: " [9]=> string(6) "close " }
Output for 5.4.3
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 6f0f4b70e2e9bdea1923a947c94926d8 " [2]=> string(33) "6f0f4b70e2e9bdea1923a947c94926d8 " [3]=> string(33) "3103adb100faf7fdd87f23ea2197ca22 " [4]=> string(41) "destroy 3103adb100faf7fdd87f23ea2197ca22 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read b31c5964d5cada0cbd4885edfef27a20 " [8]=> string(41) "write b31c5964d5cada0cbd4885edfef27a20: " [9]=> string(6) "close " }
Output for 5.4.2
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 4c15af1c882c243d44515627cf2ec68e " [2]=> string(33) "4c15af1c882c243d44515627cf2ec68e " [3]=> string(33) "49e8bac8ea39d66f882a3e3bb343397a " [4]=> string(41) "destroy 49e8bac8ea39d66f882a3e3bb343397a " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read f209df179112fae02458461228b73383 " [8]=> string(41) "write f209df179112fae02458461228b73383: " [9]=> string(6) "close " }
Output for 5.4.1
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 1442c9b0729811299ef8b66739c22e3f " [2]=> string(33) "1442c9b0729811299ef8b66739c22e3f " [3]=> string(33) "cdac40a8ee6dd9a20f9a49caa38645cf " [4]=> string(41) "destroy cdac40a8ee6dd9a20f9a49caa38645cf " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read b1c94e1aa30b56c7b075e7efa634032b " [8]=> string(41) "write b1c94e1aa30b56c7b075e7efa634032b: " [9]=> string(6) "close " }
Output for 5.4.0
array(10) { [0]=> string(15) "open PHPSESSID " [1]=> string(38) "read 80438dd7088799a7763beddc74da8f57 " [2]=> string(33) "80438dd7088799a7763beddc74da8f57 " [3]=> string(33) "6d7d9bfab21c4ca5ead79ea5e11e0ef8 " [4]=> string(41) "destroy 6d7d9bfab21c4ca5ead79ea5e11e0ef8 " [5]=> string(6) "close " [6]=> string(15) "open PHPSESSID " [7]=> string(38) "read 25c1149eacd45c304961bbb310e023be " [8]=> string(41) "write 25c1149eacd45c304961bbb310e023be: " [9]=> string(6) "close " }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/nJ08J on line 5
Process exited with code 255.
Output for 5.2.3 - 5.2.17
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/nJ08J on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/nJ08J on line 4
Process exited with code 255.
Output for 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.2
<br /> <b>Warning</b>: Unexpected character in input: '\' (ASCII=92) state=1 in <b>/in/nJ08J</b> on line <b>4</b><br /> <br /> <b>Fatal error</b>: Interface 'SessionHandlerInterface' not found in <b>/in/nJ08J</b> on line <b>4</b><br />
Process exited with code 255.
Output for 5.0.0 - 5.0.4
<br /> <b>Warning</b>: Unexpected character in input: '\' (ASCII=92) state=1 in <b>/in/nJ08J</b> on line <b>4</b><br /> <br /> <b>Fatal error</b>: Class 'SessionHandlerInterface' not found in <b>/in/nJ08J</b> on line <b>4</b><br />
Process exited with code 255.
Output for 4.4.2 - 4.4.9
<br /> <b>Parse error</b>: syntax error, unexpected T_STRING, expecting '{' in <b>/in/nJ08J</b> on line <b>4</b><br />
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
<br /> <b>Parse error</b>: parse error, unexpected T_STRING, expecting '{' in <b>/in/nJ08J</b> on line <b>4</b><br />
Process exited with code 255.
Output for 4.3.2 - 4.3.4
<br /> <b>Parse error</b>: parse error, expecting `'{'' in <b>/in/nJ08J</b> on line <b>4</b><br />
Process exited with code 255.

preferences:
245.77 ms | 401 KiB | 375 Q