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'); session_start(); $_SESSION['john'] = 'doe'; var_dump($handler->messages);
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 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/dqOs2 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/dqOs2 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/dqOs2 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/dqOs2 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/dqOs2 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/dqOs2 on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/dqOs2 on line 40 Warning: session_start(): Session cannot be started after headers have already been sent in /in/dqOs2 on line 41 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/dqOs2 on line 46 Warning: session_start(): Session cannot be started after headers have already been sent in /in/dqOs2 on line 51 Warning: session_destroy(): Trying to destroy uninitialized session in /in/dqOs2 on line 52 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/dqOs2 on line 57 Warning: session_start(): Session cannot be started after headers have already been sent in /in/dqOs2 on line 58 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/dqOs2:41 Stack trace: #0 /in/dqOs2(41): session_start() #1 {main} thrown in /in/dqOs2 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/dqOs2 on line 41 Warning: session_start(): Session callback expects true/false return value in /in/dqOs2 on line 41 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/dqOs2 on line 41 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/dqOs2 on line 46 Warning: session_start(): Cannot start session when headers already sent in /in/dqOs2 on line 51 Warning: session_destroy(): Trying to destroy uninitialized session in /in/dqOs2 on line 52 Warning: session_id(): Cannot change session id when headers already sent in /in/dqOs2 on line 57 Warning: session_start(): Cannot start session when headers already sent in /in/dqOs2 on line 58 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/dqOs2 on line 41 Warning: session_start(): Session callback expects true/false return value in /in/dqOs2 on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/dqOs2 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/dqOs2 on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/dqOs2 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(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 17a1043929a0cc020d6789283446e949" [2]=> string(32) "17a1043929a0cc020d6789283446e949" [3]=> string(32) "83bdca928fc9ee07a01ee0c6cc9e244a" [4]=> string(54) "write 83bdca928fc9ee07a01ee0c6cc9e244a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 83bdca928fc9ee07a01ee0c6cc9e244a" [8]=> string(40) "destroy 83bdca928fc9ee07a01ee0c6cc9e244a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.39
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6979aea35d2dabd76436f87996f9398e" [2]=> string(32) "6979aea35d2dabd76436f87996f9398e" [3]=> string(32) "b589f5073e0e5c5b4955b8567503d65e" [4]=> string(54) "write b589f5073e0e5c5b4955b8567503d65e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b589f5073e0e5c5b4955b8567503d65e" [8]=> string(40) "destroy b589f5073e0e5c5b4955b8567503d65e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.38
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 44cfc0f8c9981bf9d1a38cc89738cf43" [2]=> string(32) "44cfc0f8c9981bf9d1a38cc89738cf43" [3]=> string(32) "2e9118d5162c4d94d104f2e9877c9089" [4]=> string(54) "write 2e9118d5162c4d94d104f2e9877c9089: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2e9118d5162c4d94d104f2e9877c9089" [8]=> string(40) "destroy 2e9118d5162c4d94d104f2e9877c9089" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.37
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 17379c07569126ab57c629962050dc0f" [2]=> string(32) "17379c07569126ab57c629962050dc0f" [3]=> string(32) "3a968ee4e4c46fd72a9666d36e52f86b" [4]=> string(54) "write 3a968ee4e4c46fd72a9666d36e52f86b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3a968ee4e4c46fd72a9666d36e52f86b" [8]=> string(40) "destroy 3a968ee4e4c46fd72a9666d36e52f86b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.36
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 530d64ac153c9fa40de64f5bded8029b" [2]=> string(32) "530d64ac153c9fa40de64f5bded8029b" [3]=> string(32) "adf56171f0c9a3a75c75c4515568be71" [4]=> string(54) "write adf56171f0c9a3a75c75c4515568be71: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read adf56171f0c9a3a75c75c4515568be71" [8]=> string(40) "destroy adf56171f0c9a3a75c75c4515568be71" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.35
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1c084c70665e3143aeee4142dba5f6d4" [2]=> string(32) "1c084c70665e3143aeee4142dba5f6d4" [3]=> string(32) "6d40535a2ca6b01249991cd0f66997d7" [4]=> string(54) "write 6d40535a2ca6b01249991cd0f66997d7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6d40535a2ca6b01249991cd0f66997d7" [8]=> string(40) "destroy 6d40535a2ca6b01249991cd0f66997d7" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.34
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5e378c24780083d6734f09ccb1603ae5" [2]=> string(32) "5e378c24780083d6734f09ccb1603ae5" [3]=> string(32) "4bbfc98f55671923620f10af4dc5364b" [4]=> string(54) "write 4bbfc98f55671923620f10af4dc5364b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4bbfc98f55671923620f10af4dc5364b" [8]=> string(40) "destroy 4bbfc98f55671923620f10af4dc5364b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.33
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4f62e0fd8102feadaab1677068e500cd" [2]=> string(32) "4f62e0fd8102feadaab1677068e500cd" [3]=> string(32) "cf9dcf1f0d31fb3abbedd1b34bc9bbec" [4]=> string(54) "write cf9dcf1f0d31fb3abbedd1b34bc9bbec: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cf9dcf1f0d31fb3abbedd1b34bc9bbec" [8]=> string(40) "destroy cf9dcf1f0d31fb3abbedd1b34bc9bbec" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.32
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a2bd23d79b5ea5fe24698768a2f3a7b4" [2]=> string(32) "a2bd23d79b5ea5fe24698768a2f3a7b4" [3]=> string(32) "824eeb74a3849e82e8ccfb1ae119eb10" [4]=> string(54) "write 824eeb74a3849e82e8ccfb1ae119eb10: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 824eeb74a3849e82e8ccfb1ae119eb10" [8]=> string(40) "destroy 824eeb74a3849e82e8ccfb1ae119eb10" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.31
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bf96974ca2ed59252690f6ee6ce09498" [2]=> string(32) "bf96974ca2ed59252690f6ee6ce09498" [3]=> string(32) "17ac536cfd44e033359e15315c04a802" [4]=> string(54) "write 17ac536cfd44e033359e15315c04a802: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 17ac536cfd44e033359e15315c04a802" [8]=> string(40) "destroy 17ac536cfd44e033359e15315c04a802" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.30
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ad242c038aa3b5e37c6cb68e354183a4" [2]=> string(32) "ad242c038aa3b5e37c6cb68e354183a4" [3]=> string(32) "bbc67405c69b8e61a13d6d8be88f639c" [4]=> string(54) "write bbc67405c69b8e61a13d6d8be88f639c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bbc67405c69b8e61a13d6d8be88f639c" [8]=> string(40) "destroy bbc67405c69b8e61a13d6d8be88f639c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.29
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 708292a24c4c203479237726dca295dc" [2]=> string(32) "708292a24c4c203479237726dca295dc" [3]=> string(32) "09b17bcb02768b2b667fb32e4b4caa4f" [4]=> string(54) "write 09b17bcb02768b2b667fb32e4b4caa4f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 09b17bcb02768b2b667fb32e4b4caa4f" [8]=> string(40) "destroy 09b17bcb02768b2b667fb32e4b4caa4f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.28
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2f1e387c468b7f57d14acb7d664c4835" [2]=> string(32) "2f1e387c468b7f57d14acb7d664c4835" [3]=> string(32) "39b56ff3e0b3d611bb76a5e93fa2cf0a" [4]=> string(54) "write 39b56ff3e0b3d611bb76a5e93fa2cf0a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 39b56ff3e0b3d611bb76a5e93fa2cf0a" [8]=> string(40) "destroy 39b56ff3e0b3d611bb76a5e93fa2cf0a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.27
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 96ea14768e26181fd7e5c1a82dd762ce" [2]=> string(32) "96ea14768e26181fd7e5c1a82dd762ce" [3]=> string(32) "40d8d4d5e34e3d48ea83bd67297336e8" [4]=> string(54) "write 40d8d4d5e34e3d48ea83bd67297336e8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 40d8d4d5e34e3d48ea83bd67297336e8" [8]=> string(40) "destroy 40d8d4d5e34e3d48ea83bd67297336e8" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.26
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0f4d68fa4b6b51ff9cbdcb0fe3ba0909" [2]=> string(32) "0f4d68fa4b6b51ff9cbdcb0fe3ba0909" [3]=> string(32) "9e889b5cd55807c7e9537063c2cefbbb" [4]=> string(54) "write 9e889b5cd55807c7e9537063c2cefbbb: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9e889b5cd55807c7e9537063c2cefbbb" [8]=> string(40) "destroy 9e889b5cd55807c7e9537063c2cefbbb" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.25
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 962be0c0ef7c4b9a3adc37dbb10b397f" [2]=> string(32) "962be0c0ef7c4b9a3adc37dbb10b397f" [3]=> string(32) "e84bd61a90e0c73b28e97bba665128bc" [4]=> string(54) "write e84bd61a90e0c73b28e97bba665128bc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e84bd61a90e0c73b28e97bba665128bc" [8]=> string(40) "destroy e84bd61a90e0c73b28e97bba665128bc" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.24
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d7c7d051c25fb0bff1785b35b0bbd80f" [2]=> string(32) "d7c7d051c25fb0bff1785b35b0bbd80f" [3]=> string(32) "1b8fd26d54fcaa31c6bceaeb560e67ba" [4]=> string(54) "write 1b8fd26d54fcaa31c6bceaeb560e67ba: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 1b8fd26d54fcaa31c6bceaeb560e67ba" [8]=> string(40) "destroy 1b8fd26d54fcaa31c6bceaeb560e67ba" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.23
array(15) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7428f4dba7745996b16c368a67e683af" [2]=> string(7) "gc 1440" [3]=> string(32) "7428f4dba7745996b16c368a67e683af" [4]=> string(32) "56fe29bc765067e85c55f8dc65fdf540" [5]=> string(54) "write 56fe29bc765067e85c55f8dc65fdf540: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 56fe29bc765067e85c55f8dc65fdf540" [9]=> string(40) "destroy 56fe29bc765067e85c55f8dc65fdf540" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(8) "read new" }
Output for 5.6.22
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4626fb0862ab80bbd59e2afe34b3d080" [2]=> string(32) "4626fb0862ab80bbd59e2afe34b3d080" [3]=> string(32) "8492f80cb685262403c852fdefcf77b8" [4]=> string(54) "write 8492f80cb685262403c852fdefcf77b8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8492f80cb685262403c852fdefcf77b8" [8]=> string(40) "destroy 8492f80cb685262403c852fdefcf77b8" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.21
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read fb412c92467ad6f7255e502e75ce6853" [2]=> string(32) "fb412c92467ad6f7255e502e75ce6853" [3]=> string(32) "7fac2a9f2091c6c52f9a1dd4b4cdb7fd" [4]=> string(54) "write 7fac2a9f2091c6c52f9a1dd4b4cdb7fd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7fac2a9f2091c6c52f9a1dd4b4cdb7fd" [8]=> string(40) "destroy 7fac2a9f2091c6c52f9a1dd4b4cdb7fd" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.20
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 63b1b7ffb43a684906fbdbc22db1a980" [2]=> string(32) "63b1b7ffb43a684906fbdbc22db1a980" [3]=> string(32) "24317910a0a1af4cdb2889591a94171e" [4]=> string(54) "write 24317910a0a1af4cdb2889591a94171e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 24317910a0a1af4cdb2889591a94171e" [8]=> string(40) "destroy 24317910a0a1af4cdb2889591a94171e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.19
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 85302b833bd58612696f813ea6111476" [2]=> string(32) "85302b833bd58612696f813ea6111476" [3]=> string(32) "bcb35561216ceb8254e5db7dc1b94538" [4]=> string(54) "write bcb35561216ceb8254e5db7dc1b94538: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bcb35561216ceb8254e5db7dc1b94538" [8]=> string(40) "destroy bcb35561216ceb8254e5db7dc1b94538" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.18
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read be6cd01c7d03ee03dce32caddfcb89c0" [2]=> string(32) "be6cd01c7d03ee03dce32caddfcb89c0" [3]=> string(32) "0f78b7c7b8131e9184862c35bea3eb58" [4]=> string(54) "write 0f78b7c7b8131e9184862c35bea3eb58: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0f78b7c7b8131e9184862c35bea3eb58" [8]=> string(40) "destroy 0f78b7c7b8131e9184862c35bea3eb58" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.17
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e65fee1bf4ebd9c16daa8ae1491c7b31" [2]=> string(32) "e65fee1bf4ebd9c16daa8ae1491c7b31" [3]=> string(32) "8a57679f8d80b9cdb150082d52bd761d" [4]=> string(54) "write 8a57679f8d80b9cdb150082d52bd761d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8a57679f8d80b9cdb150082d52bd761d" [8]=> string(40) "destroy 8a57679f8d80b9cdb150082d52bd761d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.16
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d747d26b8452246e9eb1b3c2180fbf31" [2]=> string(32) "d747d26b8452246e9eb1b3c2180fbf31" [3]=> string(32) "59e7faddcf30046215fcef9e62da1687" [4]=> string(54) "write 59e7faddcf30046215fcef9e62da1687: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 59e7faddcf30046215fcef9e62da1687" [8]=> string(40) "destroy 59e7faddcf30046215fcef9e62da1687" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.15
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 16ccc619b38082b8d7205e884f97d372" [2]=> string(32) "16ccc619b38082b8d7205e884f97d372" [3]=> string(32) "7b8a4d0428910d3a0f90b5bcc6985d05" [4]=> string(54) "write 7b8a4d0428910d3a0f90b5bcc6985d05: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7b8a4d0428910d3a0f90b5bcc6985d05" [8]=> string(40) "destroy 7b8a4d0428910d3a0f90b5bcc6985d05" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.14
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2d2bd7e6a20fe6d1b94920bffda41cef" [2]=> string(32) "2d2bd7e6a20fe6d1b94920bffda41cef" [3]=> string(32) "f8837800217728b08ef6409c6762111a" [4]=> string(54) "write f8837800217728b08ef6409c6762111a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f8837800217728b08ef6409c6762111a" [8]=> string(40) "destroy f8837800217728b08ef6409c6762111a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.13
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9d136f756b136d76f6dbbcd360cedffe" [2]=> string(32) "9d136f756b136d76f6dbbcd360cedffe" [3]=> string(32) "8e538b38e5f38fdccd67b35755a9b181" [4]=> string(54) "write 8e538b38e5f38fdccd67b35755a9b181: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8e538b38e5f38fdccd67b35755a9b181" [8]=> string(40) "destroy 8e538b38e5f38fdccd67b35755a9b181" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.12
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2c6a4fe31056ceec757b9b9a65f18ec4" [2]=> string(32) "2c6a4fe31056ceec757b9b9a65f18ec4" [3]=> string(32) "fb38da5fa36c536df8e529bcd519c403" [4]=> string(54) "write fb38da5fa36c536df8e529bcd519c403: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fb38da5fa36c536df8e529bcd519c403" [8]=> string(40) "destroy fb38da5fa36c536df8e529bcd519c403" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.11
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 59dc272cb2a8735dd8fd4c000a36706e" [2]=> string(32) "59dc272cb2a8735dd8fd4c000a36706e" [3]=> string(32) "4ebd0643fd8cca806fdc9fe3c3c32785" [4]=> string(54) "write 4ebd0643fd8cca806fdc9fe3c3c32785: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4ebd0643fd8cca806fdc9fe3c3c32785" [8]=> string(40) "destroy 4ebd0643fd8cca806fdc9fe3c3c32785" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.10
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a5cefebc78d30855b99476d6d7969d92" [2]=> string(32) "a5cefebc78d30855b99476d6d7969d92" [3]=> string(32) "23aee372dd20fb623ab91c97c7da3399" [4]=> string(54) "write 23aee372dd20fb623ab91c97c7da3399: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 23aee372dd20fb623ab91c97c7da3399" [8]=> string(40) "destroy 23aee372dd20fb623ab91c97c7da3399" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.9
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3b98d00b179d47d7b685c9a963d8f63c" [2]=> string(32) "3b98d00b179d47d7b685c9a963d8f63c" [3]=> string(32) "28737ba6fef751b20b5c0794239fe60d" [4]=> string(54) "write 28737ba6fef751b20b5c0794239fe60d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 28737ba6fef751b20b5c0794239fe60d" [8]=> string(40) "destroy 28737ba6fef751b20b5c0794239fe60d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.8
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 483ba2fc232a163d923e0dec7620f2e6" [2]=> string(32) "483ba2fc232a163d923e0dec7620f2e6" [3]=> string(32) "59e65004421ff310bb9c456eb23a5a2b" [4]=> string(54) "write 59e65004421ff310bb9c456eb23a5a2b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 59e65004421ff310bb9c456eb23a5a2b" [8]=> string(40) "destroy 59e65004421ff310bb9c456eb23a5a2b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.7
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read aff5c59969dd7b589c378d0706384547" [2]=> string(32) "aff5c59969dd7b589c378d0706384547" [3]=> string(32) "11af911392b625f1c57c93d6577a4d49" [4]=> string(54) "write 11af911392b625f1c57c93d6577a4d49: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 11af911392b625f1c57c93d6577a4d49" [8]=> string(40) "destroy 11af911392b625f1c57c93d6577a4d49" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.6
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a8e568014cdee896cd66af261ca85584" [2]=> string(32) "a8e568014cdee896cd66af261ca85584" [3]=> string(32) "175d918c59c84dce51da704a18cdd8aa" [4]=> string(54) "write 175d918c59c84dce51da704a18cdd8aa: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 175d918c59c84dce51da704a18cdd8aa" [8]=> string(40) "destroy 175d918c59c84dce51da704a18cdd8aa" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.5
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a235c8b62a22cfc55608df618af2546a" [2]=> string(32) "a235c8b62a22cfc55608df618af2546a" [3]=> string(32) "903ca3f34a38f8041b0d51f4506d7322" [4]=> string(54) "write 903ca3f34a38f8041b0d51f4506d7322: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 903ca3f34a38f8041b0d51f4506d7322" [8]=> string(40) "destroy 903ca3f34a38f8041b0d51f4506d7322" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.4
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d803679462956b89b45eb37c5cbb96e7" [2]=> string(32) "d803679462956b89b45eb37c5cbb96e7" [3]=> string(32) "fd0e473902718f8e0ba58b01f8170adf" [4]=> string(54) "write fd0e473902718f8e0ba58b01f8170adf: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fd0e473902718f8e0ba58b01f8170adf" [8]=> string(40) "destroy fd0e473902718f8e0ba58b01f8170adf" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.3
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 240967208925b91b5e1c60d271b8217b" [2]=> string(32) "240967208925b91b5e1c60d271b8217b" [3]=> string(32) "d24aba53459c2557dcbe12ca08aea99f" [4]=> string(54) "write d24aba53459c2557dcbe12ca08aea99f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d24aba53459c2557dcbe12ca08aea99f" [8]=> string(40) "destroy d24aba53459c2557dcbe12ca08aea99f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.2
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 09d1d5f8bc3310f790eaefce7d6322d7" [2]=> string(32) "09d1d5f8bc3310f790eaefce7d6322d7" [3]=> string(32) "b8f4b8a77422bc62698b817b42950630" [4]=> string(54) "write b8f4b8a77422bc62698b817b42950630: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b8f4b8a77422bc62698b817b42950630" [8]=> string(40) "destroy b8f4b8a77422bc62698b817b42950630" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.1
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a651719164dc641e59e5e26fa3e5e7f1" [2]=> string(32) "a651719164dc641e59e5e26fa3e5e7f1" [3]=> string(32) "eb5dc85f90931259d4837441abeae79e" [4]=> string(54) "write eb5dc85f90931259d4837441abeae79e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read eb5dc85f90931259d4837441abeae79e" [8]=> string(40) "destroy eb5dc85f90931259d4837441abeae79e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.6.0
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 929f0ee013ef01987a3d4075409f433d" [2]=> string(32) "929f0ee013ef01987a3d4075409f433d" [3]=> string(32) "4b4b7c5657fa7b7bbdade6e3ccc3b06b" [4]=> string(54) "write 4b4b7c5657fa7b7bbdade6e3ccc3b06b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4b4b7c5657fa7b7bbdade6e3ccc3b06b" [8]=> string(40) "destroy 4b4b7c5657fa7b7bbdade6e3ccc3b06b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.38
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f20e65dfbc077cd0997ecb19e96ada1e" [2]=> string(32) "f20e65dfbc077cd0997ecb19e96ada1e" [3]=> string(32) "f88b96aae36ba58e1611e5405cd6ff8a" [4]=> string(54) "write f88b96aae36ba58e1611e5405cd6ff8a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f88b96aae36ba58e1611e5405cd6ff8a" [8]=> string(40) "destroy f88b96aae36ba58e1611e5405cd6ff8a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.37
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dedb6ce4e2b01128a09dba7e690cf8d3" [2]=> string(32) "dedb6ce4e2b01128a09dba7e690cf8d3" [3]=> string(32) "533b5b41871c546f69b66fd6927efdba" [4]=> string(54) "write 533b5b41871c546f69b66fd6927efdba: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 533b5b41871c546f69b66fd6927efdba" [8]=> string(40) "destroy 533b5b41871c546f69b66fd6927efdba" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.36
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3ce26612cecbbbb74cff6a32cdfde950" [2]=> string(32) "3ce26612cecbbbb74cff6a32cdfde950" [3]=> string(32) "6c2e0472fc593a455262ee28510ee908" [4]=> string(54) "write 6c2e0472fc593a455262ee28510ee908: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6c2e0472fc593a455262ee28510ee908" [8]=> string(40) "destroy 6c2e0472fc593a455262ee28510ee908" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.35
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7e806474bf532b520c28bed596548b15" [2]=> string(32) "7e806474bf532b520c28bed596548b15" [3]=> string(32) "2ef58c2c80dff89fd9b091ac1f5e0917" [4]=> string(54) "write 2ef58c2c80dff89fd9b091ac1f5e0917: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2ef58c2c80dff89fd9b091ac1f5e0917" [8]=> string(40) "destroy 2ef58c2c80dff89fd9b091ac1f5e0917" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.34
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3d9530f09f5752d37744236ba2bd1f85" [2]=> string(32) "3d9530f09f5752d37744236ba2bd1f85" [3]=> string(32) "10ead85099e582a06a18b10d0f4aff44" [4]=> string(54) "write 10ead85099e582a06a18b10d0f4aff44: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 10ead85099e582a06a18b10d0f4aff44" [8]=> string(40) "destroy 10ead85099e582a06a18b10d0f4aff44" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.33
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c16f3613ad4cf56057c11f99dd4f8a7d" [2]=> string(32) "c16f3613ad4cf56057c11f99dd4f8a7d" [3]=> string(32) "8854e17badff5e3e5ef4e45e129dcd60" [4]=> string(54) "write 8854e17badff5e3e5ef4e45e129dcd60: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8854e17badff5e3e5ef4e45e129dcd60" [8]=> string(40) "destroy 8854e17badff5e3e5ef4e45e129dcd60" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.32
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dc7cc29fd55dfd35d4b2c0f5f4e46bc9" [2]=> string(32) "dc7cc29fd55dfd35d4b2c0f5f4e46bc9" [3]=> string(32) "a06b60743642aaa61c45e4fd2de653f1" [4]=> string(54) "write a06b60743642aaa61c45e4fd2de653f1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a06b60743642aaa61c45e4fd2de653f1" [8]=> string(40) "destroy a06b60743642aaa61c45e4fd2de653f1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.31
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 19c90a47f6b273cbffcce568048165cf" [2]=> string(32) "19c90a47f6b273cbffcce568048165cf" [3]=> string(32) "8a25c1bba2848b46c56026dd576a9201" [4]=> string(54) "write 8a25c1bba2848b46c56026dd576a9201: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8a25c1bba2848b46c56026dd576a9201" [8]=> string(40) "destroy 8a25c1bba2848b46c56026dd576a9201" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.30
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dd5eb2efa11c0cd17dfc03014be81ef2" [2]=> string(32) "dd5eb2efa11c0cd17dfc03014be81ef2" [3]=> string(32) "dd8e21ec681e2a1f08d038d179024197" [4]=> string(54) "write dd8e21ec681e2a1f08d038d179024197: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read dd8e21ec681e2a1f08d038d179024197" [8]=> string(40) "destroy dd8e21ec681e2a1f08d038d179024197" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.29
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f934ea474c078e0a1f6436f28c63b17c" [2]=> string(32) "f934ea474c078e0a1f6436f28c63b17c" [3]=> string(32) "016b7fbece1ed5ffc1c1f147378366d9" [4]=> string(54) "write 016b7fbece1ed5ffc1c1f147378366d9: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 016b7fbece1ed5ffc1c1f147378366d9" [8]=> string(40) "destroy 016b7fbece1ed5ffc1c1f147378366d9" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.28
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 76854dbc51aa34ef6ccd6a3bffc42354" [2]=> string(32) "76854dbc51aa34ef6ccd6a3bffc42354" [3]=> string(32) "4113e5594ecfa52504615869d7b00560" [4]=> string(54) "write 4113e5594ecfa52504615869d7b00560: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4113e5594ecfa52504615869d7b00560" [8]=> string(40) "destroy 4113e5594ecfa52504615869d7b00560" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.27
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6da828f6a7449f3ce55011d1933ce985" [2]=> string(32) "6da828f6a7449f3ce55011d1933ce985" [3]=> string(32) "0410d820276079c02fb7894878f5a15c" [4]=> string(54) "write 0410d820276079c02fb7894878f5a15c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0410d820276079c02fb7894878f5a15c" [8]=> string(40) "destroy 0410d820276079c02fb7894878f5a15c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.26
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1dd5f46723cad7098eeac328115ec650" [2]=> string(32) "1dd5f46723cad7098eeac328115ec650" [3]=> string(32) "a3863c133a585362af01f9cffccf66c2" [4]=> string(54) "write a3863c133a585362af01f9cffccf66c2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a3863c133a585362af01f9cffccf66c2" [8]=> string(40) "destroy a3863c133a585362af01f9cffccf66c2" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.25
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 79f3bdea257a747129872aecada65557" [2]=> string(32) "79f3bdea257a747129872aecada65557" [3]=> string(32) "20c36501e9fed555f7b70c9b9a5e99b5" [4]=> string(54) "write 20c36501e9fed555f7b70c9b9a5e99b5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 20c36501e9fed555f7b70c9b9a5e99b5" [8]=> string(40) "destroy 20c36501e9fed555f7b70c9b9a5e99b5" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.24
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d071ee0507bc7e2d88799c5e4b7d46be" [2]=> string(32) "d071ee0507bc7e2d88799c5e4b7d46be" [3]=> string(32) "cf1fe7ee692a10108ab889fd1716454d" [4]=> string(54) "write cf1fe7ee692a10108ab889fd1716454d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cf1fe7ee692a10108ab889fd1716454d" [8]=> string(40) "destroy cf1fe7ee692a10108ab889fd1716454d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.23
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e94251e2edf24df759ebc9c4ef710fd3" [2]=> string(32) "e94251e2edf24df759ebc9c4ef710fd3" [3]=> string(32) "f69af6c29ca5f5001e4f9d251a24bd38" [4]=> string(54) "write f69af6c29ca5f5001e4f9d251a24bd38: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f69af6c29ca5f5001e4f9d251a24bd38" [8]=> string(40) "destroy f69af6c29ca5f5001e4f9d251a24bd38" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.22
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3969d03bf006595773a6dcb72b5105b0" [2]=> string(32) "3969d03bf006595773a6dcb72b5105b0" [3]=> string(32) "79a382b8dec28b58108d7541194e2a65" [4]=> string(54) "write 79a382b8dec28b58108d7541194e2a65: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 79a382b8dec28b58108d7541194e2a65" [8]=> string(40) "destroy 79a382b8dec28b58108d7541194e2a65" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.21
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3b074c0b97f91339342c4598235e2e49" [2]=> string(32) "3b074c0b97f91339342c4598235e2e49" [3]=> string(32) "a872447c4ca863d2bfe1947a8d9b43f1" [4]=> string(54) "write a872447c4ca863d2bfe1947a8d9b43f1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a872447c4ca863d2bfe1947a8d9b43f1" [8]=> string(40) "destroy a872447c4ca863d2bfe1947a8d9b43f1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.20
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 12ca85f2aaefd569a05e0e95076bef56" [2]=> string(32) "12ca85f2aaefd569a05e0e95076bef56" [3]=> string(32) "65888d1918e9f2b84da3fc526142cdee" [4]=> string(54) "write 65888d1918e9f2b84da3fc526142cdee: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 65888d1918e9f2b84da3fc526142cdee" [8]=> string(40) "destroy 65888d1918e9f2b84da3fc526142cdee" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.19
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 33425ef51b05cd2e9b615883c745d825" [2]=> string(32) "33425ef51b05cd2e9b615883c745d825" [3]=> string(32) "6c4ef573a6fc442f3733aeec59c965be" [4]=> string(54) "write 6c4ef573a6fc442f3733aeec59c965be: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6c4ef573a6fc442f3733aeec59c965be" [8]=> string(40) "destroy 6c4ef573a6fc442f3733aeec59c965be" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.18
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bdae61cdc46541cc03f848302b457fd0" [2]=> string(32) "bdae61cdc46541cc03f848302b457fd0" [3]=> string(32) "4fa348e48cb0dc6cdd6b970aeb251248" [4]=> string(54) "write 4fa348e48cb0dc6cdd6b970aeb251248: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4fa348e48cb0dc6cdd6b970aeb251248" [8]=> string(40) "destroy 4fa348e48cb0dc6cdd6b970aeb251248" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.17
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7e9ba5f704c5f5c98d445141de54bd71" [2]=> string(32) "7e9ba5f704c5f5c98d445141de54bd71" [3]=> string(32) "e251013df667e73db86d7b4405f81f2b" [4]=> string(54) "write e251013df667e73db86d7b4405f81f2b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e251013df667e73db86d7b4405f81f2b" [8]=> string(40) "destroy e251013df667e73db86d7b4405f81f2b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.16
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read be3015492c9d6488e66c58ecd5b6b4fa" [2]=> string(32) "be3015492c9d6488e66c58ecd5b6b4fa" [3]=> string(32) "661bc9460d91162ec8d2c4010e9127d7" [4]=> string(54) "write 661bc9460d91162ec8d2c4010e9127d7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 661bc9460d91162ec8d2c4010e9127d7" [8]=> string(40) "destroy 661bc9460d91162ec8d2c4010e9127d7" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.15
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8358958d67d527366ae8bc814014437d" [2]=> string(32) "8358958d67d527366ae8bc814014437d" [3]=> string(32) "90ff9789dc5fb03a9169d01583af6e02" [4]=> string(54) "write 90ff9789dc5fb03a9169d01583af6e02: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 90ff9789dc5fb03a9169d01583af6e02" [8]=> string(40) "destroy 90ff9789dc5fb03a9169d01583af6e02" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.14
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b8b1576dff411b5be58e6f897375b01a" [2]=> string(32) "b8b1576dff411b5be58e6f897375b01a" [3]=> string(32) "7fa2d2dfcbea83620cb3d4836de1ab15" [4]=> string(54) "write 7fa2d2dfcbea83620cb3d4836de1ab15: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7fa2d2dfcbea83620cb3d4836de1ab15" [8]=> string(40) "destroy 7fa2d2dfcbea83620cb3d4836de1ab15" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.13
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e145710ad6335d3462a437baffa284f6" [2]=> string(32) "e145710ad6335d3462a437baffa284f6" [3]=> string(32) "96272e5a1257137a7246d04d8ea179c3" [4]=> string(54) "write 96272e5a1257137a7246d04d8ea179c3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 96272e5a1257137a7246d04d8ea179c3" [8]=> string(40) "destroy 96272e5a1257137a7246d04d8ea179c3" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.12
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e696b0dcf186912b8b172625f4d92db3" [2]=> string(32) "e696b0dcf186912b8b172625f4d92db3" [3]=> string(32) "ccfb7ba4c56ec8e67738dd5211e28c70" [4]=> string(54) "write ccfb7ba4c56ec8e67738dd5211e28c70: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ccfb7ba4c56ec8e67738dd5211e28c70" [8]=> string(40) "destroy ccfb7ba4c56ec8e67738dd5211e28c70" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.11
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 779caee7152b3e2f275ed22cbd588289" [2]=> string(32) "779caee7152b3e2f275ed22cbd588289" [3]=> string(32) "28af3c0c748639c802c000c918de8b61" [4]=> string(54) "write 28af3c0c748639c802c000c918de8b61: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 28af3c0c748639c802c000c918de8b61" [8]=> string(40) "destroy 28af3c0c748639c802c000c918de8b61" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.10
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cd29f18d2934be12bcbc58c7737b01ce" [2]=> string(32) "cd29f18d2934be12bcbc58c7737b01ce" [3]=> string(32) "314b13b84f3b70ae997299f6f49d54ef" [4]=> string(54) "write 314b13b84f3b70ae997299f6f49d54ef: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 314b13b84f3b70ae997299f6f49d54ef" [8]=> string(40) "destroy 314b13b84f3b70ae997299f6f49d54ef" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.9
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dbb0abd95423c46c80951c20c46c9559" [2]=> string(32) "dbb0abd95423c46c80951c20c46c9559" [3]=> string(32) "48396e1a0c6b0cc4e6dc8f1a78135bcb" [4]=> string(54) "write 48396e1a0c6b0cc4e6dc8f1a78135bcb: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 48396e1a0c6b0cc4e6dc8f1a78135bcb" [8]=> string(40) "destroy 48396e1a0c6b0cc4e6dc8f1a78135bcb" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.8
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3e08845a25e54ed80574f409577a1ca2" [2]=> string(32) "3e08845a25e54ed80574f409577a1ca2" [3]=> string(32) "a6655c8911b8fed8422fe37aa8af8dee" [4]=> string(54) "write a6655c8911b8fed8422fe37aa8af8dee: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a6655c8911b8fed8422fe37aa8af8dee" [8]=> string(40) "destroy a6655c8911b8fed8422fe37aa8af8dee" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.7
array(15) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 04e6f2a3df1b4e8549f896454a8cdbe5" [2]=> string(32) "04e6f2a3df1b4e8549f896454a8cdbe5" [3]=> string(32) "788fd5b6002184ee4442b893bbd2d630" [4]=> string(54) "write 788fd5b6002184ee4442b893bbd2d630: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 788fd5b6002184ee4442b893bbd2d630" [8]=> string(40) "destroy 788fd5b6002184ee4442b893bbd2d630" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(7) "gc 1440" }
Output for 5.5.6
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2ec14fd05e8d9e1396dca907ab598cba" [2]=> string(32) "2ec14fd05e8d9e1396dca907ab598cba" [3]=> string(32) "a4a13fcc522d4cf5897b98ca35ffd877" [4]=> string(54) "write a4a13fcc522d4cf5897b98ca35ffd877: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a4a13fcc522d4cf5897b98ca35ffd877" [8]=> string(40) "destroy a4a13fcc522d4cf5897b98ca35ffd877" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.5
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d7880b2e4bec38c5ca8146935ed3462d" [2]=> string(32) "d7880b2e4bec38c5ca8146935ed3462d" [3]=> string(32) "bf03d8dcb68dd9ba8c7ad797ea2d9e32" [4]=> string(54) "write bf03d8dcb68dd9ba8c7ad797ea2d9e32: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bf03d8dcb68dd9ba8c7ad797ea2d9e32" [8]=> string(40) "destroy bf03d8dcb68dd9ba8c7ad797ea2d9e32" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.4
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3422ad57c6ccd2fd6af70196ddc1264f" [2]=> string(32) "3422ad57c6ccd2fd6af70196ddc1264f" [3]=> string(32) "8f23c7c6040089c6a72e0c5572ca598f" [4]=> string(54) "write 8f23c7c6040089c6a72e0c5572ca598f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8f23c7c6040089c6a72e0c5572ca598f" [8]=> string(40) "destroy 8f23c7c6040089c6a72e0c5572ca598f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.3
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 925f44aa977a8e9380fa1aed70ab8702" [2]=> string(32) "925f44aa977a8e9380fa1aed70ab8702" [3]=> string(32) "675c88b853116c7307d813cd31af0c4a" [4]=> string(54) "write 675c88b853116c7307d813cd31af0c4a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 675c88b853116c7307d813cd31af0c4a" [8]=> string(40) "destroy 675c88b853116c7307d813cd31af0c4a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.2
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7efa1742db2428c488b58dc42ad10b1a" [2]=> string(32) "7efa1742db2428c488b58dc42ad10b1a" [3]=> string(32) "6fcf44094e17213e521670b5fddd96bc" [4]=> string(54) "write 6fcf44094e17213e521670b5fddd96bc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6fcf44094e17213e521670b5fddd96bc" [8]=> string(40) "destroy 6fcf44094e17213e521670b5fddd96bc" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.1
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 82b8bbd15f1809b038c5b5cef6bc2f63" [2]=> string(32) "82b8bbd15f1809b038c5b5cef6bc2f63" [3]=> string(32) "4c0ffb6578f8dfd299e6c482e2d15403" [4]=> string(54) "write 4c0ffb6578f8dfd299e6c482e2d15403: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4c0ffb6578f8dfd299e6c482e2d15403" [8]=> string(40) "destroy 4c0ffb6578f8dfd299e6c482e2d15403" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.5.0
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2a38197ab040106d183d00d9bc04abb3" [2]=> string(32) "2a38197ab040106d183d00d9bc04abb3" [3]=> string(32) "509e6633837a3e516d82b325f5a809c2" [4]=> string(54) "write 509e6633837a3e516d82b325f5a809c2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 509e6633837a3e516d82b325f5a809c2" [8]=> string(40) "destroy 509e6633837a3e516d82b325f5a809c2" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.45
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 07713b6ac5e1ff04bb9c74336aa1cd28" [2]=> string(32) "07713b6ac5e1ff04bb9c74336aa1cd28" [3]=> string(32) "4bc68dba83bfc80353d43eeef77bd5ad" [4]=> string(54) "write 4bc68dba83bfc80353d43eeef77bd5ad: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4bc68dba83bfc80353d43eeef77bd5ad" [8]=> string(40) "destroy 4bc68dba83bfc80353d43eeef77bd5ad" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.44
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 156a38a0eabf78fbddb81f4b03146cae" [2]=> string(32) "156a38a0eabf78fbddb81f4b03146cae" [3]=> string(32) "5e3635f472d2d37298c33748a63622fd" [4]=> string(54) "write 5e3635f472d2d37298c33748a63622fd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5e3635f472d2d37298c33748a63622fd" [8]=> string(40) "destroy 5e3635f472d2d37298c33748a63622fd" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.43
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d6d1330bc3d0972fdcd2fc47f6c5bd11" [2]=> string(32) "d6d1330bc3d0972fdcd2fc47f6c5bd11" [3]=> string(32) "68d3ccdca7369543d58e62322148d12f" [4]=> string(54) "write 68d3ccdca7369543d58e62322148d12f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 68d3ccdca7369543d58e62322148d12f" [8]=> string(40) "destroy 68d3ccdca7369543d58e62322148d12f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.42
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4154fcabf70a952c64e56aefbae8c21a" [2]=> string(32) "4154fcabf70a952c64e56aefbae8c21a" [3]=> string(32) "e36140b844d54fc6e245a99939957989" [4]=> string(54) "write e36140b844d54fc6e245a99939957989: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e36140b844d54fc6e245a99939957989" [8]=> string(40) "destroy e36140b844d54fc6e245a99939957989" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.41
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a7386c9cf62cb6583cce7e3b9e8961f4" [2]=> string(32) "a7386c9cf62cb6583cce7e3b9e8961f4" [3]=> string(32) "5f7c0cf909f5aeac50a5d20f452f44e1" [4]=> string(54) "write 5f7c0cf909f5aeac50a5d20f452f44e1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5f7c0cf909f5aeac50a5d20f452f44e1" [8]=> string(40) "destroy 5f7c0cf909f5aeac50a5d20f452f44e1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.40
array(15) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5f651b1a8f315ac929d24c2ebcfe7f71" [2]=> string(32) "5f651b1a8f315ac929d24c2ebcfe7f71" [3]=> string(32) "ae5c32787d7008eac44e8220f92a7de9" [4]=> string(54) "write ae5c32787d7008eac44e8220f92a7de9: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ae5c32787d7008eac44e8220f92a7de9" [8]=> string(7) "gc 1440" [9]=> string(40) "destroy ae5c32787d7008eac44e8220f92a7de9" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(8) "read new" }
Output for 5.4.39
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 56dd0c31f42b58b7595f6319df989404" [2]=> string(32) "56dd0c31f42b58b7595f6319df989404" [3]=> string(32) "8716243fecbf22db387342eb381c36ee" [4]=> string(54) "write 8716243fecbf22db387342eb381c36ee: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8716243fecbf22db387342eb381c36ee" [8]=> string(40) "destroy 8716243fecbf22db387342eb381c36ee" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.38
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8c087d6214471fc4953654c15ccec61b" [2]=> string(32) "8c087d6214471fc4953654c15ccec61b" [3]=> string(32) "7048f4a1547d6a477e19bb0017ea1d04" [4]=> string(54) "write 7048f4a1547d6a477e19bb0017ea1d04: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7048f4a1547d6a477e19bb0017ea1d04" [8]=> string(40) "destroy 7048f4a1547d6a477e19bb0017ea1d04" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.37
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 29354210fb210d93628608a14a82d17d" [2]=> string(32) "29354210fb210d93628608a14a82d17d" [3]=> string(32) "6a2aa4c1a51fa7c1ebbc8598ff1babf1" [4]=> string(54) "write 6a2aa4c1a51fa7c1ebbc8598ff1babf1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6a2aa4c1a51fa7c1ebbc8598ff1babf1" [8]=> string(40) "destroy 6a2aa4c1a51fa7c1ebbc8598ff1babf1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.36
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b6f3cbfabeb498c891d9aeb93678f124" [2]=> string(32) "b6f3cbfabeb498c891d9aeb93678f124" [3]=> string(32) "f83d024c7d5283728f32a42657550cb1" [4]=> string(54) "write f83d024c7d5283728f32a42657550cb1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f83d024c7d5283728f32a42657550cb1" [8]=> string(40) "destroy f83d024c7d5283728f32a42657550cb1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.35
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7407ec9334490c75657745a3d88623c6" [2]=> string(32) "7407ec9334490c75657745a3d88623c6" [3]=> string(32) "7ec7329f7c4b6c02d6efa55e35ecf175" [4]=> string(54) "write 7ec7329f7c4b6c02d6efa55e35ecf175: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7ec7329f7c4b6c02d6efa55e35ecf175" [8]=> string(40) "destroy 7ec7329f7c4b6c02d6efa55e35ecf175" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.34
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dabd7a90bf72801f9711671b2f47c620" [2]=> string(32) "dabd7a90bf72801f9711671b2f47c620" [3]=> string(32) "b23a05d1cd267dda7c3fc701d9508539" [4]=> string(54) "write b23a05d1cd267dda7c3fc701d9508539: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b23a05d1cd267dda7c3fc701d9508539" [8]=> string(40) "destroy b23a05d1cd267dda7c3fc701d9508539" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.33
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 878eea08b38b7cf8ac37841e53b17aaa" [2]=> string(32) "878eea08b38b7cf8ac37841e53b17aaa" [3]=> string(32) "d847e44ca024ca32413c6dae1fb17854" [4]=> string(54) "write d847e44ca024ca32413c6dae1fb17854: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d847e44ca024ca32413c6dae1fb17854" [8]=> string(40) "destroy d847e44ca024ca32413c6dae1fb17854" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.32
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 98782069819ba60f32c2a7c98a16951a" [2]=> string(32) "98782069819ba60f32c2a7c98a16951a" [3]=> string(32) "7b8744b8b7625119a96356a13a14ff4a" [4]=> string(54) "write 7b8744b8b7625119a96356a13a14ff4a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7b8744b8b7625119a96356a13a14ff4a" [8]=> string(40) "destroy 7b8744b8b7625119a96356a13a14ff4a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.31
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8e69d5ca56a959b2b3966bed8ddea321" [2]=> string(32) "8e69d5ca56a959b2b3966bed8ddea321" [3]=> string(32) "706e499f25e9ab93728c45cb39beb095" [4]=> string(54) "write 706e499f25e9ab93728c45cb39beb095: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 706e499f25e9ab93728c45cb39beb095" [8]=> string(40) "destroy 706e499f25e9ab93728c45cb39beb095" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.30
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cdc83b53f72c36702f4d5b8d35bdbefa" [2]=> string(32) "cdc83b53f72c36702f4d5b8d35bdbefa" [3]=> string(32) "2c905028005618da7655069dfd91f2a4" [4]=> string(54) "write 2c905028005618da7655069dfd91f2a4: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2c905028005618da7655069dfd91f2a4" [8]=> string(40) "destroy 2c905028005618da7655069dfd91f2a4" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.29
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7160fe9d733a1396b31d6402f24836b2" [2]=> string(32) "7160fe9d733a1396b31d6402f24836b2" [3]=> string(32) "54101fb05d538e7a69de02234fa9084f" [4]=> string(54) "write 54101fb05d538e7a69de02234fa9084f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 54101fb05d538e7a69de02234fa9084f" [8]=> string(40) "destroy 54101fb05d538e7a69de02234fa9084f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.28
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read fba1539ed83ccadb332f91617f590776" [2]=> string(32) "fba1539ed83ccadb332f91617f590776" [3]=> string(32) "f29b991cb19022b6eed3212aca85f27e" [4]=> string(54) "write f29b991cb19022b6eed3212aca85f27e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f29b991cb19022b6eed3212aca85f27e" [8]=> string(40) "destroy f29b991cb19022b6eed3212aca85f27e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.27
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bc83f51b0da542fc472095a0afc49ea9" [2]=> string(32) "bc83f51b0da542fc472095a0afc49ea9" [3]=> string(32) "9a2ba4eb1f32522aa3ec8c19c5c9060a" [4]=> string(54) "write 9a2ba4eb1f32522aa3ec8c19c5c9060a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9a2ba4eb1f32522aa3ec8c19c5c9060a" [8]=> string(40) "destroy 9a2ba4eb1f32522aa3ec8c19c5c9060a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.26
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b51c2833386575af63852b168f3d8054" [2]=> string(32) "b51c2833386575af63852b168f3d8054" [3]=> string(32) "668341114f67df41f65d035b714b9f2e" [4]=> string(54) "write 668341114f67df41f65d035b714b9f2e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 668341114f67df41f65d035b714b9f2e" [8]=> string(40) "destroy 668341114f67df41f65d035b714b9f2e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.25
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2c815824a54d23253a866a6716ff710f" [2]=> string(32) "2c815824a54d23253a866a6716ff710f" [3]=> string(32) "68e2d97b5bb899098d58a0294bfda390" [4]=> string(54) "write 68e2d97b5bb899098d58a0294bfda390: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 68e2d97b5bb899098d58a0294bfda390" [8]=> string(40) "destroy 68e2d97b5bb899098d58a0294bfda390" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.24
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2e6a0ac254ad6d379211d4a1ffbe0e2d" [2]=> string(32) "2e6a0ac254ad6d379211d4a1ffbe0e2d" [3]=> string(32) "7c3f8e304453db494c1bed813a128b6a" [4]=> string(54) "write 7c3f8e304453db494c1bed813a128b6a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7c3f8e304453db494c1bed813a128b6a" [8]=> string(40) "destroy 7c3f8e304453db494c1bed813a128b6a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.23
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e58508d3d39a7220761188777de7bbf1" [2]=> string(32) "e58508d3d39a7220761188777de7bbf1" [3]=> string(32) "c1aeb172841cf073c63c7548a98f3990" [4]=> string(54) "write c1aeb172841cf073c63c7548a98f3990: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c1aeb172841cf073c63c7548a98f3990" [8]=> string(40) "destroy c1aeb172841cf073c63c7548a98f3990" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.22
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d941c3aab831a5f0034654709e5e4a61" [2]=> string(32) "d941c3aab831a5f0034654709e5e4a61" [3]=> string(32) "dd82312a05e956a1bbde19b77724808e" [4]=> string(54) "write dd82312a05e956a1bbde19b77724808e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read dd82312a05e956a1bbde19b77724808e" [8]=> string(40) "destroy dd82312a05e956a1bbde19b77724808e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.21
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 40288b08eee1bf4d2b871b4f096db8e1" [2]=> string(32) "40288b08eee1bf4d2b871b4f096db8e1" [3]=> string(32) "8cb026bb2cce6282110dba4737770c24" [4]=> string(54) "write 8cb026bb2cce6282110dba4737770c24: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8cb026bb2cce6282110dba4737770c24" [8]=> string(40) "destroy 8cb026bb2cce6282110dba4737770c24" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.20
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read edde4d11411c147487e72f80d1848146" [2]=> string(32) "edde4d11411c147487e72f80d1848146" [3]=> string(32) "89fbed1c868e7ab769569974dd125531" [4]=> string(54) "write 89fbed1c868e7ab769569974dd125531: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 89fbed1c868e7ab769569974dd125531" [8]=> string(40) "destroy 89fbed1c868e7ab769569974dd125531" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.19
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2aa3f8000773ab04a1345f1299945c3d" [2]=> string(32) "2aa3f8000773ab04a1345f1299945c3d" [3]=> string(32) "dd9dd804300bea5b4b4540092f76296c" [4]=> string(54) "write dd9dd804300bea5b4b4540092f76296c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read dd9dd804300bea5b4b4540092f76296c" [8]=> string(40) "destroy dd9dd804300bea5b4b4540092f76296c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.18
array(15) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 85b51bb8452c2371221df41a5d55a14a" [2]=> string(7) "gc 1440" [3]=> string(32) "85b51bb8452c2371221df41a5d55a14a" [4]=> string(32) "687297baceb20395b0ada63061ecfb27" [5]=> string(54) "write 687297baceb20395b0ada63061ecfb27: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 687297baceb20395b0ada63061ecfb27" [9]=> string(40) "destroy 687297baceb20395b0ada63061ecfb27" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(8) "read new" }
Output for 5.4.17
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 00eca1149c77628c3e128d491c4af0d8" [2]=> string(32) "00eca1149c77628c3e128d491c4af0d8" [3]=> string(32) "6342604eec05a4c7afa29fb6a3d6ac5d" [4]=> string(54) "write 6342604eec05a4c7afa29fb6a3d6ac5d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6342604eec05a4c7afa29fb6a3d6ac5d" [8]=> string(40) "destroy 6342604eec05a4c7afa29fb6a3d6ac5d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.16
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b845f2e490e0d7087ede5112d6fa533e" [2]=> string(32) "b845f2e490e0d7087ede5112d6fa533e" [3]=> string(32) "76e35e4c6fa30fa1a8c37a595abbd8b5" [4]=> string(54) "write 76e35e4c6fa30fa1a8c37a595abbd8b5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 76e35e4c6fa30fa1a8c37a595abbd8b5" [8]=> string(40) "destroy 76e35e4c6fa30fa1a8c37a595abbd8b5" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.15
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b759e141df28c44a1531730361425b41" [2]=> string(32) "b759e141df28c44a1531730361425b41" [3]=> string(32) "d78704521ecc23ea4404d36dccc0cf67" [4]=> string(54) "write d78704521ecc23ea4404d36dccc0cf67: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d78704521ecc23ea4404d36dccc0cf67" [8]=> string(40) "destroy d78704521ecc23ea4404d36dccc0cf67" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.14
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 48c6f83afb2e42ccccb875e61af9c380" [2]=> string(32) "48c6f83afb2e42ccccb875e61af9c380" [3]=> string(32) "42c0e0c43fba6793abc4a94091a23248" [4]=> string(54) "write 42c0e0c43fba6793abc4a94091a23248: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 42c0e0c43fba6793abc4a94091a23248" [8]=> string(40) "destroy 42c0e0c43fba6793abc4a94091a23248" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.13
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 82278658d3767b7317959ea6fcb27e85" [2]=> string(32) "82278658d3767b7317959ea6fcb27e85" [3]=> string(32) "2b8515ddcb32dc6e4f2ef043d19944ba" [4]=> string(54) "write 2b8515ddcb32dc6e4f2ef043d19944ba: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2b8515ddcb32dc6e4f2ef043d19944ba" [8]=> string(40) "destroy 2b8515ddcb32dc6e4f2ef043d19944ba" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.12
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 750c430353d04b720e2908e065a6cb5c" [2]=> string(32) "750c430353d04b720e2908e065a6cb5c" [3]=> string(32) "4b17a8b9cd79cb3a6d69a3f3e2695751" [4]=> string(54) "write 4b17a8b9cd79cb3a6d69a3f3e2695751: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4b17a8b9cd79cb3a6d69a3f3e2695751" [8]=> string(40) "destroy 4b17a8b9cd79cb3a6d69a3f3e2695751" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.11
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3022a91c07af4c28dc07ef037129097b" [2]=> string(32) "3022a91c07af4c28dc07ef037129097b" [3]=> string(32) "ae2ba466bd684dc176e295ddd7584115" [4]=> string(54) "write ae2ba466bd684dc176e295ddd7584115: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ae2ba466bd684dc176e295ddd7584115" [8]=> string(40) "destroy ae2ba466bd684dc176e295ddd7584115" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.10
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a91478c92cacf963087030ead4dad64d" [2]=> string(32) "a91478c92cacf963087030ead4dad64d" [3]=> string(32) "29c3fcda3c2beede11303c188d278a4b" [4]=> string(54) "write 29c3fcda3c2beede11303c188d278a4b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 29c3fcda3c2beede11303c188d278a4b" [8]=> string(40) "destroy 29c3fcda3c2beede11303c188d278a4b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.9
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 02d2f81995292d872d33a36dfa5c842e" [2]=> string(32) "02d2f81995292d872d33a36dfa5c842e" [3]=> string(32) "2932dbfc6c654d7dd909f6014d384948" [4]=> string(54) "write 2932dbfc6c654d7dd909f6014d384948: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2932dbfc6c654d7dd909f6014d384948" [8]=> string(40) "destroy 2932dbfc6c654d7dd909f6014d384948" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.8
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 34ac308d8213c766cfd5649d24f06e6d" [2]=> string(32) "34ac308d8213c766cfd5649d24f06e6d" [3]=> string(32) "10dda8dffa7263493daaa25aed296912" [4]=> string(54) "write 10dda8dffa7263493daaa25aed296912: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 10dda8dffa7263493daaa25aed296912" [8]=> string(40) "destroy 10dda8dffa7263493daaa25aed296912" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.7
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f14aa35a9183b17298ee35bd3eecd9d6" [2]=> string(32) "f14aa35a9183b17298ee35bd3eecd9d6" [3]=> string(32) "3096240174cb7024e41b6d0020544a98" [4]=> string(54) "write 3096240174cb7024e41b6d0020544a98: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3096240174cb7024e41b6d0020544a98" [8]=> string(40) "destroy 3096240174cb7024e41b6d0020544a98" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.6
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 83ecfa2a8df881c31f4bcb96608827a6" [2]=> string(32) "83ecfa2a8df881c31f4bcb96608827a6" [3]=> string(32) "76e92c395df529b6b5fcf3eb2105329e" [4]=> string(54) "write 76e92c395df529b6b5fcf3eb2105329e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 76e92c395df529b6b5fcf3eb2105329e" [8]=> string(40) "destroy 76e92c395df529b6b5fcf3eb2105329e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.5
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1b18aaa3cf85b3d003eaf594dcb64169" [2]=> string(32) "1b18aaa3cf85b3d003eaf594dcb64169" [3]=> string(32) "b42f3932883e2af81bb8d5d95926c5b1" [4]=> string(54) "write b42f3932883e2af81bb8d5d95926c5b1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b42f3932883e2af81bb8d5d95926c5b1" [8]=> string(40) "destroy b42f3932883e2af81bb8d5d95926c5b1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.4
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 930260a98add16c6bcd6b7e1c58480c0" [2]=> string(32) "930260a98add16c6bcd6b7e1c58480c0" [3]=> string(32) "f7d910fa88f47c62e74324f8f7aa157a" [4]=> string(54) "write f7d910fa88f47c62e74324f8f7aa157a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f7d910fa88f47c62e74324f8f7aa157a" [8]=> string(40) "destroy f7d910fa88f47c62e74324f8f7aa157a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.3
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3f75950d659a906f611f7c2b35397648" [2]=> string(32) "3f75950d659a906f611f7c2b35397648" [3]=> string(32) "3fcefa786a5bd42f7576c2061d425346" [4]=> string(54) "write 3fcefa786a5bd42f7576c2061d425346: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3fcefa786a5bd42f7576c2061d425346" [8]=> string(40) "destroy 3fcefa786a5bd42f7576c2061d425346" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.2
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0a2b8ecc2cb9ce57fadd9e88413c2b81" [2]=> string(32) "0a2b8ecc2cb9ce57fadd9e88413c2b81" [3]=> string(32) "9334e4ee7ad79b5e4b9902a50eb8a3ba" [4]=> string(54) "write 9334e4ee7ad79b5e4b9902a50eb8a3ba: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9334e4ee7ad79b5e4b9902a50eb8a3ba" [8]=> string(40) "destroy 9334e4ee7ad79b5e4b9902a50eb8a3ba" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.1
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c7d23f0e3dc43ce5a379f6a2bc341d57" [2]=> string(32) "c7d23f0e3dc43ce5a379f6a2bc341d57" [3]=> string(32) "61ad414e240881037179e0a8ee8e6502" [4]=> string(54) "write 61ad414e240881037179e0a8ee8e6502: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 61ad414e240881037179e0a8ee8e6502" [8]=> string(40) "destroy 61ad414e240881037179e0a8ee8e6502" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.4.0
array(14) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f72fa6eaf7156fae14257f87db924c06" [2]=> string(32) "f72fa6eaf7156fae14257f87db924c06" [3]=> string(32) "be6cc6674bea9e0a7971d9a8fea6f6be" [4]=> string(54) "write be6cc6674bea9e0a7971d9a8fea6f6be: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read be6cc6674bea9e0a7971d9a8fea6f6be" [8]=> string(40) "destroy be6cc6674bea9e0a7971d9a8fea6f6be" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/dqOs2 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/dqOs2 on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/dqOs2 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/dqOs2 on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/dqOs2 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/dqOs2 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/dqOs2 on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/dqOs2 on line 4
Process exited with code 255.

preferences:
322.85 ms | 401 KiB | 459 Q