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_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.6
Deprecated: Return type of MySessionHandler::open($savePath, $sessionName) should either be compatible with SessionHandlerInterface::open(string $path, string $name): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/iYZfV 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/iYZfV 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/iYZfV 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/iYZfV 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/iYZfV 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/iYZfV on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/iYZfV on line 40 Warning: session_start(): Session cannot be started after headers have already been sent in /in/iYZfV on line 41 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/iYZfV on line 46 Warning: session_destroy(): Trying to destroy uninitialized session in /in/iYZfV on line 48 Warning: session_start(): Session cannot be started after headers have already been sent in /in/iYZfV on line 50 array(2) { [0]=> string(0) "" [1]=> 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/iYZfV:41 Stack trace: #0 /in/iYZfV(41): session_start() #1 {main} thrown in /in/iYZfV on line 41
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33
Warning: session_start(): Session callback expects true/false return value in /in/iYZfV on line 41 Warning: session_start(): Session callback expects true/false return value in /in/iYZfV on line 41 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/iYZfV on line 41 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/iYZfV on line 46 Warning: session_destroy(): Trying to destroy uninitialized session in /in/iYZfV on line 48 Warning: session_start(): Cannot start session when headers already sent in /in/iYZfV on line 50 array(4) { [0]=> string(14) "open PHPSESSID" [1]=> string(5) "close" [2]=> string(0) "" [3]=> string(0) "" }
Output for 7.1.0 - 7.1.20
Warning: session_start(): Session callback expects true/false return value in /in/iYZfV on line 41 Warning: session_start(): Session callback expects true/false return value in /in/iYZfV on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/iYZfV 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/iYZfV on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/iYZfV 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(14) "open PHPSESSID" [1]=> string(37) "read 7378ff2d53508899eb65c3fcf5a4d37c" [2]=> string(32) "7378ff2d53508899eb65c3fcf5a4d37c" [3]=> string(32) "35f5de0a4157b09db86873830af429aa" [4]=> string(40) "destroy 35f5de0a4157b09db86873830af429aa" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d015614009ea1dcac14c2b06ac0cda96" [8]=> string(40) "write d015614009ea1dcac14c2b06ac0cda96: " [9]=> string(5) "close" }
Output for 5.6.21
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1e12fd4d71d34e45218732df7d6ecc4c" [2]=> string(32) "1e12fd4d71d34e45218732df7d6ecc4c" [3]=> string(32) "acfd4e58a8499d796617797192c7c316" [4]=> string(40) "destroy acfd4e58a8499d796617797192c7c316" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c05521286a96872b89d35be62f92da07" [8]=> string(40) "write c05521286a96872b89d35be62f92da07: " [9]=> string(5) "close" }
Output for 5.6.20
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read adb7fcb3c466288219aac81cfa96fc29" [2]=> string(32) "adb7fcb3c466288219aac81cfa96fc29" [3]=> string(32) "3ac847a6a11869ef03156b6e511d5be6" [4]=> string(40) "destroy 3ac847a6a11869ef03156b6e511d5be6" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 012fe9b18ecefd4553646ea9f4818f45" [8]=> string(40) "write 012fe9b18ecefd4553646ea9f4818f45: " [9]=> string(5) "close" }
Output for 5.6.19
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 89ac683b5659b178833b6bd575771ff9" [2]=> string(32) "89ac683b5659b178833b6bd575771ff9" [3]=> string(32) "964d7084670feef2b4005f6e5b427eb4" [4]=> string(40) "destroy 964d7084670feef2b4005f6e5b427eb4" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 36d1751bd9bd2014bbe3ce883e6f29cb" [8]=> string(40) "write 36d1751bd9bd2014bbe3ce883e6f29cb: " [9]=> string(5) "close" }
Output for 5.6.18
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a39ede57ba1f67aecd3de4760eaeec24" [2]=> string(32) "a39ede57ba1f67aecd3de4760eaeec24" [3]=> string(32) "87404ccc7649afafbdd915088f2aee5f" [4]=> string(40) "destroy 87404ccc7649afafbdd915088f2aee5f" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 563d085b1806304f9e2133d85755cf3f" [8]=> string(40) "write 563d085b1806304f9e2133d85755cf3f: " [9]=> string(5) "close" }
Output for 5.6.17
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4124b2e683b8bb5e6f89485539454ed3" [2]=> string(32) "4124b2e683b8bb5e6f89485539454ed3" [3]=> string(32) "60dd865ae53e6b51c13ddbffd63b8a86" [4]=> string(40) "destroy 60dd865ae53e6b51c13ddbffd63b8a86" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9f0e31b1a6356118b26a2f4c05a84ce0" [8]=> string(40) "write 9f0e31b1a6356118b26a2f4c05a84ce0: " [9]=> string(5) "close" }
Output for 5.6.16
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0b3b5ee563bbb4876b408ebf590c5870" [2]=> string(32) "0b3b5ee563bbb4876b408ebf590c5870" [3]=> string(32) "ab3e16c0e539334555acef600fe9c8fc" [4]=> string(40) "destroy ab3e16c0e539334555acef600fe9c8fc" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e3cfd2b80c74262ad673d9e77ba38217" [8]=> string(40) "write e3cfd2b80c74262ad673d9e77ba38217: " [9]=> string(5) "close" }
Output for 5.6.15
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e673910da313ea0c914daeb6d9cb3d25" [2]=> string(32) "e673910da313ea0c914daeb6d9cb3d25" [3]=> string(32) "eac8a8aaeee88e0221c4cdb4bc787802" [4]=> string(40) "destroy eac8a8aaeee88e0221c4cdb4bc787802" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 45319526acbe259cad5469675b8acc00" [8]=> string(40) "write 45319526acbe259cad5469675b8acc00: " [9]=> string(5) "close" }
Output for 5.6.14
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 37160940a944d771672e374cec9454b0" [2]=> string(32) "37160940a944d771672e374cec9454b0" [3]=> string(32) "57ecc157c423cbfca45752afc4327c64" [4]=> string(40) "destroy 57ecc157c423cbfca45752afc4327c64" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 636b99a4c5b197301d5ce129716dfe33" [8]=> string(40) "write 636b99a4c5b197301d5ce129716dfe33: " [9]=> string(5) "close" }
Output for 5.6.13
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6c7017131d932e2787db35e9f7449187" [2]=> string(32) "6c7017131d932e2787db35e9f7449187" [3]=> string(32) "43c98bad034728a8ae65a6fdff2725e7" [4]=> string(40) "destroy 43c98bad034728a8ae65a6fdff2725e7" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3af6fa0e2c006422a25e318aaa7ab5ea" [8]=> string(40) "write 3af6fa0e2c006422a25e318aaa7ab5ea: " [9]=> string(5) "close" }
Output for 5.6.12
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f4d651a444ebe861bdb7a287575ab0e5" [2]=> string(32) "f4d651a444ebe861bdb7a287575ab0e5" [3]=> string(32) "9e794d6ebd3f7087e53d229ed64078cb" [4]=> string(40) "destroy 9e794d6ebd3f7087e53d229ed64078cb" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e9508f578ede85c042adb2b77223bcd1" [8]=> string(40) "write e9508f578ede85c042adb2b77223bcd1: " [9]=> string(5) "close" }
Output for 5.6.11
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read deccffd8725f286154920ccab541c0e7" [2]=> string(32) "deccffd8725f286154920ccab541c0e7" [3]=> string(32) "03a3af9161d08225f2bf6d29663d7132" [4]=> string(40) "destroy 03a3af9161d08225f2bf6d29663d7132" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 38f7706fa955d4471d7a8f7d34c00c4d" [8]=> string(40) "write 38f7706fa955d4471d7a8f7d34c00c4d: " [9]=> string(5) "close" }
Output for 5.6.10
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 87af61b6e29381f024622c6bd839bb47" [2]=> string(32) "87af61b6e29381f024622c6bd839bb47" [3]=> string(32) "138a95673c391c36d420a185385e9448" [4]=> string(40) "destroy 138a95673c391c36d420a185385e9448" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read dd2aca91161b7b9346a3c4634d49865a" [8]=> string(40) "write dd2aca91161b7b9346a3c4634d49865a: " [9]=> string(5) "close" }
Output for 5.6.9
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 541d3bdbe86aeb3b9ac1e2b31331f3f3" [2]=> string(32) "541d3bdbe86aeb3b9ac1e2b31331f3f3" [3]=> string(32) "5d7e1fd3b53583fb13a2dd4c8d60136f" [4]=> string(40) "destroy 5d7e1fd3b53583fb13a2dd4c8d60136f" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fae4858e52814d62f259a76956a20aee" [8]=> string(40) "write fae4858e52814d62f259a76956a20aee: " [9]=> string(5) "close" }
Output for 5.6.8
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read aaee2730d7f7db123e60935f3a79bb96" [2]=> string(32) "aaee2730d7f7db123e60935f3a79bb96" [3]=> string(32) "152114c83447743836fea3ce9df80726" [4]=> string(40) "destroy 152114c83447743836fea3ce9df80726" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 268e5fd57a7904f65082b8ceed1a35b6" [8]=> string(40) "write 268e5fd57a7904f65082b8ceed1a35b6: " [9]=> string(5) "close" }
Output for 5.5.35
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read fb9eb47989719bd611317fc235eccfe7" [2]=> string(32) "fb9eb47989719bd611317fc235eccfe7" [3]=> string(32) "e18e50636f77240b4148d1b0e5a211f2" [4]=> string(40) "destroy e18e50636f77240b4148d1b0e5a211f2" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 39766e812770e8f0c6e8b9ccf4ba8ab0" [8]=> string(40) "write 39766e812770e8f0c6e8b9ccf4ba8ab0: " [9]=> string(5) "close" }
Output for 5.5.34
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 373b168b7827b9791771ac269ced2755" [2]=> string(32) "373b168b7827b9791771ac269ced2755" [3]=> string(32) "8b500be4364baf543a46d936facc8eb8" [4]=> string(40) "destroy 8b500be4364baf543a46d936facc8eb8" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read aa9c3b1b165211fbe752d84a19b3a92c" [8]=> string(40) "write aa9c3b1b165211fbe752d84a19b3a92c: " [9]=> string(5) "close" }
Output for 5.5.33
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6af87532873ac2249a878b1ae33661ca" [2]=> string(32) "6af87532873ac2249a878b1ae33661ca" [3]=> string(32) "32dae470bd50df87a2e6b74f48069bed" [4]=> string(40) "destroy 32dae470bd50df87a2e6b74f48069bed" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c8e2f5a287530e8dd83f97ac944ede8c" [8]=> string(40) "write c8e2f5a287530e8dd83f97ac944ede8c: " [9]=> string(5) "close" }
Output for 5.5.32
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 47691ae0c7ebb4154e84e9d038b769cd" [2]=> string(32) "47691ae0c7ebb4154e84e9d038b769cd" [3]=> string(32) "de08210f8c45f0ea621121cc55ea4a0f" [4]=> string(40) "destroy de08210f8c45f0ea621121cc55ea4a0f" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a50d5f9b0b5afbb517b95e326aaac85b" [8]=> string(40) "write a50d5f9b0b5afbb517b95e326aaac85b: " [9]=> string(5) "close" }
Output for 5.5.31
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3b06ea9b715f96bf506edfed882f180f" [2]=> string(32) "3b06ea9b715f96bf506edfed882f180f" [3]=> string(32) "0800af549b982b02779baeef969ad1d6" [4]=> string(40) "destroy 0800af549b982b02779baeef969ad1d6" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b7609c5f457b668ac12014d681a797a5" [8]=> string(40) "write b7609c5f457b668ac12014d681a797a5: " [9]=> string(5) "close" }
Output for 5.5.30
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bd0f37786c8edc64520c6feb7ee9c9be" [2]=> string(32) "bd0f37786c8edc64520c6feb7ee9c9be" [3]=> string(32) "b5ad90651619711452ffc6910cc7a3f6" [4]=> string(40) "destroy b5ad90651619711452ffc6910cc7a3f6" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9b65aefe73eb9ab30ee52c8bb8f42517" [8]=> string(40) "write 9b65aefe73eb9ab30ee52c8bb8f42517: " [9]=> string(5) "close" }
Output for 5.5.29
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ca393f316e4bbf8e1318ced4820ccdef" [2]=> string(32) "ca393f316e4bbf8e1318ced4820ccdef" [3]=> string(32) "7d3523ccdac498ba6b3f51fee081fc58" [4]=> string(40) "destroy 7d3523ccdac498ba6b3f51fee081fc58" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f846b3b096dc9c488722e47599ee165d" [8]=> string(40) "write f846b3b096dc9c488722e47599ee165d: " [9]=> string(5) "close" }
Output for 5.5.28
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e204a4ecd3737ee643e7b0f120e856f0" [2]=> string(32) "e204a4ecd3737ee643e7b0f120e856f0" [3]=> string(32) "a1c97ee4ea39d1565ab17ac3c7167740" [4]=> string(40) "destroy a1c97ee4ea39d1565ab17ac3c7167740" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8f77e872d656746563f9c3674daaf327" [8]=> string(40) "write 8f77e872d656746563f9c3674daaf327: " [9]=> string(5) "close" }
Output for 5.5.27
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 822d7faccd8b50d7c5e022fe09fe5e09" [2]=> string(32) "822d7faccd8b50d7c5e022fe09fe5e09" [3]=> string(32) "facb9f8ef99e13f90cdeeb0c7798e0d3" [4]=> string(40) "destroy facb9f8ef99e13f90cdeeb0c7798e0d3" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d87ae896aba160e0b083bc0263d6ac14" [8]=> string(40) "write d87ae896aba160e0b083bc0263d6ac14: " [9]=> string(5) "close" }
Output for 5.5.26
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9aa088ae22d817c9946171fc02b22e2f" [2]=> string(32) "9aa088ae22d817c9946171fc02b22e2f" [3]=> string(32) "1e5fc574505c1252de9a3d2ea8848aa4" [4]=> string(40) "destroy 1e5fc574505c1252de9a3d2ea8848aa4" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7595e3deb4345950280e4fffba1c87ec" [8]=> string(40) "write 7595e3deb4345950280e4fffba1c87ec: " [9]=> string(5) "close" }
Output for 5.5.25
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 40f7f2156a22a860552c16bc0b6f3810" [2]=> string(32) "40f7f2156a22a860552c16bc0b6f3810" [3]=> string(32) "b398b657ba21f29ea101f3cd1f83687c" [4]=> string(40) "destroy b398b657ba21f29ea101f3cd1f83687c" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cd8500e4766246178d59f2c303d9ce4e" [8]=> string(40) "write cd8500e4766246178d59f2c303d9ce4e: " [9]=> string(5) "close" }
Output for 5.5.24
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read de2e3441ae5b18af1ef1bd8501685b2c" [2]=> string(32) "de2e3441ae5b18af1ef1bd8501685b2c" [3]=> string(32) "e7cd2c647574970134f6e7f073086d2f" [4]=> string(40) "destroy e7cd2c647574970134f6e7f073086d2f" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6e8982d635fcd2ddb2297a121c31232c" [8]=> string(40) "write 6e8982d635fcd2ddb2297a121c31232c: " [9]=> string(5) "close" }
Output for 5.4.45
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 45975ba6e6124a9134a0044c16dff800" [2]=> string(32) "45975ba6e6124a9134a0044c16dff800" [3]=> string(32) "34cf41cdda9093adb25fea16b3dcddb2" [4]=> string(40) "destroy 34cf41cdda9093adb25fea16b3dcddb2" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 47d1dcbf153ee6360abb514c0aa8c6aa" [8]=> string(40) "write 47d1dcbf153ee6360abb514c0aa8c6aa: " [9]=> string(5) "close" }
Output for 5.4.44
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bc4dd7e35a72f14d4dd5140e13d35066" [2]=> string(32) "bc4dd7e35a72f14d4dd5140e13d35066" [3]=> string(32) "17693ebfa142dd3c485a89c263eae826" [4]=> string(40) "destroy 17693ebfa142dd3c485a89c263eae826" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 52db4d36846a4b7cfac8869435d32793" [8]=> string(40) "write 52db4d36846a4b7cfac8869435d32793: " [9]=> string(5) "close" }
Output for 5.4.43
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f5d5c85017bcde923b0ee221cca2cc34" [2]=> string(32) "f5d5c85017bcde923b0ee221cca2cc34" [3]=> string(32) "01e80ac0907363b33c97072fa0145064" [4]=> string(40) "destroy 01e80ac0907363b33c97072fa0145064" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c3407e09159b112b5f2f3112cb005bd9" [8]=> string(40) "write c3407e09159b112b5f2f3112cb005bd9: " [9]=> string(5) "close" }
Output for 5.4.42
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read eb922346e10410598b1e711f8cb4e9b3" [2]=> string(32) "eb922346e10410598b1e711f8cb4e9b3" [3]=> string(32) "9d476e50ef19fafeacb29d8ebb0ae004" [4]=> string(40) "destroy 9d476e50ef19fafeacb29d8ebb0ae004" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8fd40747199c931e7f481fcec1f9520a" [8]=> string(40) "write 8fd40747199c931e7f481fcec1f9520a: " [9]=> string(5) "close" }
Output for 5.4.41
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b4c1a54dd6e63a48e68e26332d05ab8e" [2]=> string(32) "b4c1a54dd6e63a48e68e26332d05ab8e" [3]=> string(32) "899c35cd970cda681b3891f270ef45d2" [4]=> string(40) "destroy 899c35cd970cda681b3891f270ef45d2" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 792dc10b82fe30f3abd16ae64e17c076" [8]=> string(40) "write 792dc10b82fe30f3abd16ae64e17c076: " [9]=> string(5) "close" }
Output for 5.4.40
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ec71b2e0f8568f885411232356869508" [2]=> string(32) "ec71b2e0f8568f885411232356869508" [3]=> string(32) "0668c83dd6ccd35df32dacc1f81d590b" [4]=> string(40) "destroy 0668c83dd6ccd35df32dacc1f81d590b" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 547a961a0b45dd6103bb52db1775e889" [8]=> string(40) "write 547a961a0b45dd6103bb52db1775e889: " [9]=> string(5) "close" }
Output for 5.4.39
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 082104b677c4d9d32fd40dad8deba48b" [2]=> string(32) "082104b677c4d9d32fd40dad8deba48b" [3]=> string(32) "288f90d8751f7cdc8e1dcd15e83dd182" [4]=> string(40) "destroy 288f90d8751f7cdc8e1dcd15e83dd182" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f38c31166dde94139c58bf3b00d94bce" [8]=> string(40) "write f38c31166dde94139c58bf3b00d94bce: " [9]=> string(5) "close" }
Output for 5.4.38
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6b22829976a73072944c62e1f161546a" [2]=> string(32) "6b22829976a73072944c62e1f161546a" [3]=> string(32) "7795a5946499869acbb345485021597f" [4]=> string(40) "destroy 7795a5946499869acbb345485021597f" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6e2a58d34daea18ce3db70ba981f1380" [8]=> string(40) "write 6e2a58d34daea18ce3db70ba981f1380: " [9]=> string(5) "close" }
Output for 5.4.37
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 24075c94a4bd3cbf2282c5d8127ee5c7" [2]=> string(32) "24075c94a4bd3cbf2282c5d8127ee5c7" [3]=> string(32) "0ab34d27899e4f54740c95840ae535e3" [4]=> string(40) "destroy 0ab34d27899e4f54740c95840ae535e3" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b32bb4d07d387a6367e061547974a988" [8]=> string(40) "write b32bb4d07d387a6367e061547974a988: " [9]=> string(5) "close" }
Output for 5.4.36
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 25403434ba6c2365c56bb72c663465fa" [2]=> string(32) "25403434ba6c2365c56bb72c663465fa" [3]=> string(32) "cfa70c7fa9fd5d57198554c2dd34c9f1" [4]=> string(40) "destroy cfa70c7fa9fd5d57198554c2dd34c9f1" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ef3a2c3d99070dafcb333938f4dbbeab" [8]=> string(40) "write ef3a2c3d99070dafcb333938f4dbbeab: " [9]=> string(5) "close" }
Output for 5.4.35
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5517c553abbb9ec50e17fe6c1b70393c" [2]=> string(32) "5517c553abbb9ec50e17fe6c1b70393c" [3]=> string(32) "3d2508e41565aba5b81406d6b43291ef" [4]=> string(40) "destroy 3d2508e41565aba5b81406d6b43291ef" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read dc4375069a96d4dff7170d6a18a7eee4" [8]=> string(40) "write dc4375069a96d4dff7170d6a18a7eee4: " [9]=> string(5) "close" }
Output for 5.4.34
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9154da5dd9b69c9b57a2ecf076ccf088" [2]=> string(32) "9154da5dd9b69c9b57a2ecf076ccf088" [3]=> string(32) "97709f9c132ccbe0697748f9980053ce" [4]=> string(40) "destroy 97709f9c132ccbe0697748f9980053ce" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bdbc219b7bf40a8d87e95ce7ce326b00" [8]=> string(40) "write bdbc219b7bf40a8d87e95ce7ce326b00: " [9]=> string(5) "close" }
Output for 5.4.32
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cd86b8054f2d8a0a920da487c04a93ff" [2]=> string(32) "cd86b8054f2d8a0a920da487c04a93ff" [3]=> string(32) "86d0be504eb8d31a227e28aff108f8f4" [4]=> string(40) "destroy 86d0be504eb8d31a227e28aff108f8f4" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ac3ae18850546498a7ab6f34ffc4f34e" [8]=> string(40) "write ac3ae18850546498a7ab6f34ffc4f34e: " [9]=> string(5) "close" }
Output for 5.4.31
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ee066778ac1c50e07afa2d6123d9d240" [2]=> string(32) "ee066778ac1c50e07afa2d6123d9d240" [3]=> string(32) "5387e81d1f6b2d0928675062446cddc9" [4]=> string(40) "destroy 5387e81d1f6b2d0928675062446cddc9" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 873c3de2179fa54ba2c4ecb6b724dee5" [8]=> string(40) "write 873c3de2179fa54ba2c4ecb6b724dee5: " [9]=> string(5) "close" }
Output for 5.4.30
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b1a16dc9e277cb5bbe2935733506c514" [2]=> string(32) "b1a16dc9e277cb5bbe2935733506c514" [3]=> string(32) "c2ac11a5e95fa451671cb9ee6d2681b5" [4]=> string(40) "destroy c2ac11a5e95fa451671cb9ee6d2681b5" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6173ce5288b51a8cae3557c2f7db1bd3" [8]=> string(40) "write 6173ce5288b51a8cae3557c2f7db1bd3: " [9]=> string(5) "close" }
Output for 5.4.29
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ca9714cc15fafd6586a6bdbd91062e2f" [2]=> string(32) "ca9714cc15fafd6586a6bdbd91062e2f" [3]=> string(32) "75740c57a8e3a3989629fb4f85e43d47" [4]=> string(40) "destroy 75740c57a8e3a3989629fb4f85e43d47" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4a05c1f505b80f76494809a34cd660bc" [8]=> string(40) "write 4a05c1f505b80f76494809a34cd660bc: " [9]=> string(5) "close" }
Output for 5.4.28
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read af04837c39f48e204629d1f696963ecd" [2]=> string(32) "af04837c39f48e204629d1f696963ecd" [3]=> string(32) "23ffdf0268510be050648265d80d26b4" [4]=> string(40) "destroy 23ffdf0268510be050648265d80d26b4" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f78bd94fe52a801d35def9eda78144f0" [8]=> string(40) "write f78bd94fe52a801d35def9eda78144f0: " [9]=> string(5) "close" }
Output for 5.4.27
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9a17e386977a5358d67aa9bb8c4a602a" [2]=> string(32) "9a17e386977a5358d67aa9bb8c4a602a" [3]=> string(32) "67fb0e35efbd5b73284dd041cdb8bb7d" [4]=> string(40) "destroy 67fb0e35efbd5b73284dd041cdb8bb7d" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4f4b67e26dd8fb66318c2d631165f8f8" [8]=> string(40) "write 4f4b67e26dd8fb66318c2d631165f8f8: " [9]=> string(5) "close" }
Output for 5.4.26
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7386824717a9d71dc9d3406c017a45d9" [2]=> string(32) "7386824717a9d71dc9d3406c017a45d9" [3]=> string(32) "235b15c462bcdf2b861afbfe224e99ad" [4]=> string(40) "destroy 235b15c462bcdf2b861afbfe224e99ad" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 41a6ed9c80d4c5b3cf791c4ecd9d04a0" [8]=> string(40) "write 41a6ed9c80d4c5b3cf791c4ecd9d04a0: " [9]=> string(5) "close" }
Output for 5.4.25
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4c5cbd0f9e13fe74cef782326177ce2f" [2]=> string(32) "4c5cbd0f9e13fe74cef782326177ce2f" [3]=> string(32) "a2f5897ff6f2adc49e4f55215d8c90fb" [4]=> string(40) "destroy a2f5897ff6f2adc49e4f55215d8c90fb" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6b3515619ed67eff7dc11e3a6b025ab7" [8]=> string(40) "write 6b3515619ed67eff7dc11e3a6b025ab7: " [9]=> string(5) "close" }
Output for 5.4.24
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read eb2f93ed32ccc67b8571ef9c0c19e773" [2]=> string(32) "eb2f93ed32ccc67b8571ef9c0c19e773" [3]=> string(32) "d397ae9e14e94992ced5b12bbfb05da1" [4]=> string(40) "destroy d397ae9e14e94992ced5b12bbfb05da1" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 47a4dc882c7878ced56ecc5ec9f1583e" [8]=> string(40) "write 47a4dc882c7878ced56ecc5ec9f1583e: " [9]=> string(5) "close" }
Output for 5.4.23
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 596e537558935c29f36063f6395b4fbd" [2]=> string(32) "596e537558935c29f36063f6395b4fbd" [3]=> string(32) "e8e862aa61bd2ef9fea365916c17c988" [4]=> string(40) "destroy e8e862aa61bd2ef9fea365916c17c988" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read db78940de653f0006f5cc55b9bf6b611" [8]=> string(40) "write db78940de653f0006f5cc55b9bf6b611: " [9]=> string(5) "close" }
Output for 5.4.22
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d10369d510bb2427772828628a9e87d7" [2]=> string(32) "d10369d510bb2427772828628a9e87d7" [3]=> string(32) "7556c2a24f81f031735ace9c0f57e9ee" [4]=> string(40) "destroy 7556c2a24f81f031735ace9c0f57e9ee" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 18ab0c15fc75a3b7fd90c5d47ff4f639" [8]=> string(40) "write 18ab0c15fc75a3b7fd90c5d47ff4f639: " [9]=> string(5) "close" }
Output for 5.4.21
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 55f2ac07a0e75c85263918e2fde369a6" [2]=> string(32) "55f2ac07a0e75c85263918e2fde369a6" [3]=> string(32) "9d7481d06df168246f9f1cfadf2dcafd" [4]=> string(40) "destroy 9d7481d06df168246f9f1cfadf2dcafd" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2ab03b9822c031d09bb538cad3fbf600" [8]=> string(40) "write 2ab03b9822c031d09bb538cad3fbf600: " [9]=> string(5) "close" }
Output for 5.4.20
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b45156c6ccd1ece67a9cf7e10d10e759" [2]=> string(32) "b45156c6ccd1ece67a9cf7e10d10e759" [3]=> string(32) "c3dafb9a8847d8d6507fdb501af00140" [4]=> string(40) "destroy c3dafb9a8847d8d6507fdb501af00140" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8d62e1fccb1290ca153d0d40a82eba85" [8]=> string(40) "write 8d62e1fccb1290ca153d0d40a82eba85: " [9]=> string(5) "close" }
Output for 5.4.19
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e465ae280ee191f41b8f89fa020cfc42" [2]=> string(32) "e465ae280ee191f41b8f89fa020cfc42" [3]=> string(32) "ddf2d6a9b2f85a02821e0044fee2dc52" [4]=> string(40) "destroy ddf2d6a9b2f85a02821e0044fee2dc52" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a01996e0841caf2b3e54d4b6eb7f0f8e" [8]=> string(40) "write a01996e0841caf2b3e54d4b6eb7f0f8e: " [9]=> string(5) "close" }
Output for 5.4.18
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f663d432dbebf2f162e0e1483ffaea95" [2]=> string(32) "f663d432dbebf2f162e0e1483ffaea95" [3]=> string(32) "9f0b695fa8fb17b9dd87f9c7e6cea948" [4]=> string(40) "destroy 9f0b695fa8fb17b9dd87f9c7e6cea948" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f56c9c1b9fb70b306f8d7c7b9063657e" [8]=> string(40) "write f56c9c1b9fb70b306f8d7c7b9063657e: " [9]=> string(5) "close" }
Output for 5.4.17
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f2c25f6994fc215afb129418b2d2d71d" [2]=> string(32) "f2c25f6994fc215afb129418b2d2d71d" [3]=> string(32) "9a1f5bf45af331963ed3138b396dc8f7" [4]=> string(40) "destroy 9a1f5bf45af331963ed3138b396dc8f7" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 93a49b15b47dd36d8fb2ccba78782ccf" [8]=> string(40) "write 93a49b15b47dd36d8fb2ccba78782ccf: " [9]=> string(5) "close" }
Output for 5.4.16
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1bfaf29c68f983bad2dd0b2416c39d52" [2]=> string(32) "1bfaf29c68f983bad2dd0b2416c39d52" [3]=> string(32) "5616b71f00a4d2b3fbece918689885ac" [4]=> string(40) "destroy 5616b71f00a4d2b3fbece918689885ac" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8ec01661ad1b09ca2da5c7cee003b1a3" [8]=> string(40) "write 8ec01661ad1b09ca2da5c7cee003b1a3: " [9]=> string(5) "close" }
Output for 5.4.15
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 220a3f74ecaf0203c17b3fbf8d53905a" [2]=> string(32) "220a3f74ecaf0203c17b3fbf8d53905a" [3]=> string(32) "94222bca939722247c910528758bcc5b" [4]=> string(40) "destroy 94222bca939722247c910528758bcc5b" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ab37d123f3f4aa0e4211a7501faedcea" [8]=> string(40) "write ab37d123f3f4aa0e4211a7501faedcea: " [9]=> string(5) "close" }
Output for 5.4.14
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0b2bb120e24d10824f35a81c6133fbcd" [2]=> string(32) "0b2bb120e24d10824f35a81c6133fbcd" [3]=> string(32) "1e47f3d322f95d7b8c1546f9df2e1893" [4]=> string(40) "destroy 1e47f3d322f95d7b8c1546f9df2e1893" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 938211a712647c893772d13bdfd0607e" [8]=> string(40) "write 938211a712647c893772d13bdfd0607e: " [9]=> string(5) "close" }
Output for 5.4.13
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0b328cfb8f7707180ec986f53995751c" [2]=> string(32) "0b328cfb8f7707180ec986f53995751c" [3]=> string(32) "4855b6278afe11028ba934055d879370" [4]=> string(40) "destroy 4855b6278afe11028ba934055d879370" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8f66a40672da9fa04636f80e289b558b" [8]=> string(40) "write 8f66a40672da9fa04636f80e289b558b: " [9]=> string(5) "close" }
Output for 5.4.12
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4d32bf114da0932c9ff7513a48664730" [2]=> string(32) "4d32bf114da0932c9ff7513a48664730" [3]=> string(32) "2714039fbe862c26b7e0c36ad719f00c" [4]=> string(40) "destroy 2714039fbe862c26b7e0c36ad719f00c" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c73d6d5287f53114c788329df49b953e" [8]=> string(40) "write c73d6d5287f53114c788329df49b953e: " [9]=> string(5) "close" }
Output for 5.4.11
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3482e6bc5734d9d9f6715320ee95bde1" [2]=> string(32) "3482e6bc5734d9d9f6715320ee95bde1" [3]=> string(32) "ca7204141823834c1f44d4d9a1d9a373" [4]=> string(40) "destroy ca7204141823834c1f44d4d9a1d9a373" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bada99691dfe561da051c84338d107d4" [8]=> string(40) "write bada99691dfe561da051c84338d107d4: " [9]=> string(5) "close" }
Output for 5.4.10
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b6f70401fac77bc3a54f0d5e0ae326d9" [2]=> string(32) "b6f70401fac77bc3a54f0d5e0ae326d9" [3]=> string(32) "c1e88865eb1ce4d56cfd0d8ba966f7ac" [4]=> string(40) "destroy c1e88865eb1ce4d56cfd0d8ba966f7ac" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7940ff04d38b71f366742790c62884c6" [8]=> string(40) "write 7940ff04d38b71f366742790c62884c6: " [9]=> string(5) "close" }
Output for 5.4.9
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f501be0ee4b4a1f7f6a6148846ce7385" [2]=> string(32) "f501be0ee4b4a1f7f6a6148846ce7385" [3]=> string(32) "4597b4867917e3528d9a4d135a2e342e" [4]=> string(40) "destroy 4597b4867917e3528d9a4d135a2e342e" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ea482aaa317ff33e8f77cb4bbd9786b9" [8]=> string(40) "write ea482aaa317ff33e8f77cb4bbd9786b9: " [9]=> string(5) "close" }
Output for 5.4.8
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read acc9126ec5c3fc093c3803a4df72e1b7" [2]=> string(32) "acc9126ec5c3fc093c3803a4df72e1b7" [3]=> string(32) "854adff739f1002a1c659b1f9d5e1abc" [4]=> string(40) "destroy 854adff739f1002a1c659b1f9d5e1abc" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b365e0f98594faab197a84f37604c318" [8]=> string(40) "write b365e0f98594faab197a84f37604c318: " [9]=> string(5) "close" }
Output for 5.4.7
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bf9f196a66f03268ebbdc3f958997192" [2]=> string(32) "bf9f196a66f03268ebbdc3f958997192" [3]=> string(32) "d893e7ec9e63983b8ec081820ee655fb" [4]=> string(40) "destroy d893e7ec9e63983b8ec081820ee655fb" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f49e69bba56583010c2403b7c2e63ec5" [8]=> string(40) "write f49e69bba56583010c2403b7c2e63ec5: " [9]=> string(5) "close" }
Output for 5.4.6
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 360a646585e95cd85124b0e68695bd0a" [2]=> string(32) "360a646585e95cd85124b0e68695bd0a" [3]=> string(32) "a7d1c79894a45309da492712a277c44e" [4]=> string(40) "destroy a7d1c79894a45309da492712a277c44e" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 88c7998d5f4cdd07018be3e7c8572bd3" [8]=> string(40) "write 88c7998d5f4cdd07018be3e7c8572bd3: " [9]=> string(5) "close" }
Output for 5.4.5
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4cdb15378e5d1063200f211f4e4d489f" [2]=> string(32) "4cdb15378e5d1063200f211f4e4d489f" [3]=> string(32) "3138539d3019b0125cc967229bdf8e52" [4]=> string(40) "destroy 3138539d3019b0125cc967229bdf8e52" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e5095c77f8612eceef1cf3af73b7a862" [8]=> string(40) "write e5095c77f8612eceef1cf3af73b7a862: " [9]=> string(5) "close" }
Output for 5.4.4
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7ab17f3c7ac06ceed1734396fd291421" [2]=> string(32) "7ab17f3c7ac06ceed1734396fd291421" [3]=> string(32) "73a9806e4f1b2a203743155808573567" [4]=> string(40) "destroy 73a9806e4f1b2a203743155808573567" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6f3b73eccc732666967183e9bdb75e04" [8]=> string(40) "write 6f3b73eccc732666967183e9bdb75e04: " [9]=> string(5) "close" }
Output for 5.4.3
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c77281f01cd6821ad126e1c02faa3ff6" [2]=> string(32) "c77281f01cd6821ad126e1c02faa3ff6" [3]=> string(32) "209be35868b7c92609f60adf9118a379" [4]=> string(40) "destroy 209be35868b7c92609f60adf9118a379" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 24a86596e13cee3a92554f024d82a06b" [8]=> string(40) "write 24a86596e13cee3a92554f024d82a06b: " [9]=> string(5) "close" }
Output for 5.4.2
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e3967a4c198536f898881fc5f0e97962" [2]=> string(32) "e3967a4c198536f898881fc5f0e97962" [3]=> string(32) "14d9ca0db80e1a09b5fb828223bc1db3" [4]=> string(40) "destroy 14d9ca0db80e1a09b5fb828223bc1db3" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 07fd18441724f9204d2bc490067acbd0" [8]=> string(40) "write 07fd18441724f9204d2bc490067acbd0: " [9]=> string(5) "close" }
Output for 5.4.1
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b578ff650c1cefb97d21d2cfc276df67" [2]=> string(32) "b578ff650c1cefb97d21d2cfc276df67" [3]=> string(32) "2fd05fa82c5414e2ac1b3ef71b80e049" [4]=> string(40) "destroy 2fd05fa82c5414e2ac1b3ef71b80e049" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6bd97e5e7cf39e1a515cfc415340d4e8" [8]=> string(40) "write 6bd97e5e7cf39e1a515cfc415340d4e8: " [9]=> string(5) "close" }
Output for 5.4.0
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1b6f93f3a1354e25dba598ec743a865a" [2]=> string(32) "1b6f93f3a1354e25dba598ec743a865a" [3]=> string(32) "e528d5e4b999bd6461d5bc97a425be99" [4]=> string(40) "destroy e528d5e4b999bd6461d5bc97a425be99" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bc86080219f03c3db97f3af72bf18665" [8]=> string(40) "write bc86080219f03c3db97f3af72bf18665: " [9]=> string(5) "close" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/iYZfV 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/iYZfV on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/iYZfV 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/iYZfV on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/iYZfV 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/iYZfV 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/iYZfV on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/iYZfV on line 4
Process exited with code 255.

preferences:
235.28 ms | 401 KiB | 314 Q