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(); 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/aSJ8u 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/aSJ8u 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/aSJ8u 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/aSJ8u 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/aSJ8u 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/aSJ8u on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/aSJ8u on line 40 Warning: session_start(): Session cannot be started after headers have already been sent in /in/aSJ8u on line 41 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/aSJ8u on line 46 Warning: session_start(): Session cannot be started after headers have already been sent in /in/aSJ8u on line 51 Warning: session_destroy(): Trying to destroy uninitialized session in /in/aSJ8u on line 52 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/aSJ8u:41 Stack trace: #0 /in/aSJ8u(41): session_start() #1 {main} thrown in /in/aSJ8u 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/aSJ8u on line 41 Warning: session_start(): Session callback expects true/false return value in /in/aSJ8u on line 41 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/aSJ8u on line 41 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/aSJ8u on line 46 Warning: session_start(): Cannot start session when headers already sent in /in/aSJ8u on line 51 Warning: session_destroy(): Trying to destroy uninitialized session in /in/aSJ8u on line 52 array(4) { [0]=> string(14) "open PHPSESSID" [1]=> string(5) "close" [2]=> string(0) "" [3]=> string(0) "" }
Output for 7.1.0 - 7.1.25
Warning: session_start(): Session callback expects true/false return value in /in/aSJ8u on line 41 Warning: session_start(): Session callback expects true/false return value in /in/aSJ8u on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/aSJ8u 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/aSJ8u on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/aSJ8u 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.38
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6c50c84761ca5cb966b7258d1196cef4" [2]=> string(32) "6c50c84761ca5cb966b7258d1196cef4" [3]=> string(32) "8356dc04bbbaa9ff9348b05d48a8b207" [4]=> string(54) "write 8356dc04bbbaa9ff9348b05d48a8b207: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8356dc04bbbaa9ff9348b05d48a8b207" [8]=> string(40) "destroy 8356dc04bbbaa9ff9348b05d48a8b207" [9]=> string(5) "close" }
Output for 5.6.37
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a9c2aa29fd656ffe48a176d5cae07772" [2]=> string(32) "a9c2aa29fd656ffe48a176d5cae07772" [3]=> string(32) "2c4533f10557a90830a51803a0c4bb60" [4]=> string(54) "write 2c4533f10557a90830a51803a0c4bb60: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2c4533f10557a90830a51803a0c4bb60" [8]=> string(40) "destroy 2c4533f10557a90830a51803a0c4bb60" [9]=> string(5) "close" }
Output for 5.6.36
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4863688a437bcb113f17b84c387070de" [2]=> string(32) "4863688a437bcb113f17b84c387070de" [3]=> string(32) "80c0dc0da9cdf51cd5aa5eb166359c63" [4]=> string(54) "write 80c0dc0da9cdf51cd5aa5eb166359c63: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 80c0dc0da9cdf51cd5aa5eb166359c63" [8]=> string(40) "destroy 80c0dc0da9cdf51cd5aa5eb166359c63" [9]=> string(5) "close" }
Output for 5.6.35
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 66d71a4cff47c150d79ba27bc4f73b71" [2]=> string(32) "66d71a4cff47c150d79ba27bc4f73b71" [3]=> string(32) "0c16077c9906e136124979e315a03ba3" [4]=> string(54) "write 0c16077c9906e136124979e315a03ba3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0c16077c9906e136124979e315a03ba3" [8]=> string(40) "destroy 0c16077c9906e136124979e315a03ba3" [9]=> string(5) "close" }
Output for 5.6.34
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2e7a6e4bddb80c9df112f1247f5382b1" [2]=> string(32) "2e7a6e4bddb80c9df112f1247f5382b1" [3]=> string(32) "cab794013de5b08e56acba825543c2da" [4]=> string(54) "write cab794013de5b08e56acba825543c2da: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cab794013de5b08e56acba825543c2da" [8]=> string(40) "destroy cab794013de5b08e56acba825543c2da" [9]=> string(5) "close" }
Output for 5.6.33
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a39fd73029eb22bc680511aef95890fc" [2]=> string(32) "a39fd73029eb22bc680511aef95890fc" [3]=> string(32) "ece316654320276914560d633ff0c15b" [4]=> string(54) "write ece316654320276914560d633ff0c15b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ece316654320276914560d633ff0c15b" [8]=> string(40) "destroy ece316654320276914560d633ff0c15b" [9]=> string(5) "close" }
Output for 5.6.32
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dc8e5b0e62dd52cf4c0cb4cff19236a7" [2]=> string(32) "dc8e5b0e62dd52cf4c0cb4cff19236a7" [3]=> string(32) "d7ae97ecb9398d5bd7f6ab1757e171cd" [4]=> string(54) "write d7ae97ecb9398d5bd7f6ab1757e171cd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d7ae97ecb9398d5bd7f6ab1757e171cd" [8]=> string(40) "destroy d7ae97ecb9398d5bd7f6ab1757e171cd" [9]=> string(5) "close" }
Output for 5.6.31
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 032984a3284160b089e5c926e8d25ad2" [2]=> string(32) "032984a3284160b089e5c926e8d25ad2" [3]=> string(32) "9185c0cf0b6bd8142118864eabec5348" [4]=> string(54) "write 9185c0cf0b6bd8142118864eabec5348: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9185c0cf0b6bd8142118864eabec5348" [8]=> string(40) "destroy 9185c0cf0b6bd8142118864eabec5348" [9]=> string(5) "close" }
Output for 5.6.30
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c82e65d5d76d005868293b0849bbcefc" [2]=> string(32) "c82e65d5d76d005868293b0849bbcefc" [3]=> string(32) "7ef14aad7e69f8bf2b8a058ad2ff709e" [4]=> string(54) "write 7ef14aad7e69f8bf2b8a058ad2ff709e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7ef14aad7e69f8bf2b8a058ad2ff709e" [8]=> string(40) "destroy 7ef14aad7e69f8bf2b8a058ad2ff709e" [9]=> string(5) "close" }
Output for 5.6.29
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 133d74976d441d45a1ce3c241218932e" [2]=> string(32) "133d74976d441d45a1ce3c241218932e" [3]=> string(32) "bb3e49b1088d46da72817274f6834db8" [4]=> string(54) "write bb3e49b1088d46da72817274f6834db8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bb3e49b1088d46da72817274f6834db8" [8]=> string(40) "destroy bb3e49b1088d46da72817274f6834db8" [9]=> string(5) "close" }
Output for 5.6.28
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0fcfd892a41f007b80643787a4918171" [2]=> string(32) "0fcfd892a41f007b80643787a4918171" [3]=> string(32) "8ecdd192089348e85b946b79a834dd22" [4]=> string(54) "write 8ecdd192089348e85b946b79a834dd22: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8ecdd192089348e85b946b79a834dd22" [8]=> string(40) "destroy 8ecdd192089348e85b946b79a834dd22" [9]=> string(5) "close" }
Output for 5.6.27
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 35ce92a164ff02879fb9fd12055b02ed" [2]=> string(32) "35ce92a164ff02879fb9fd12055b02ed" [3]=> string(32) "c87768e3bb40c0b109f5bad5ac115a9d" [4]=> string(54) "write c87768e3bb40c0b109f5bad5ac115a9d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c87768e3bb40c0b109f5bad5ac115a9d" [8]=> string(40) "destroy c87768e3bb40c0b109f5bad5ac115a9d" [9]=> string(5) "close" }
Output for 5.6.26
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0425999376b586efac70dc8ec7d4da28" [2]=> string(32) "0425999376b586efac70dc8ec7d4da28" [3]=> string(32) "2fbc986005cd71b4d51f3260d1051de8" [4]=> string(54) "write 2fbc986005cd71b4d51f3260d1051de8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2fbc986005cd71b4d51f3260d1051de8" [8]=> string(40) "destroy 2fbc986005cd71b4d51f3260d1051de8" [9]=> string(5) "close" }
Output for 5.6.25
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e75b779d9a76a97f556036d34b06678e" [2]=> string(32) "e75b779d9a76a97f556036d34b06678e" [3]=> string(32) "f425d8bee9bec5076e2fc375a4e59ac7" [4]=> string(54) "write f425d8bee9bec5076e2fc375a4e59ac7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f425d8bee9bec5076e2fc375a4e59ac7" [8]=> string(40) "destroy f425d8bee9bec5076e2fc375a4e59ac7" [9]=> string(5) "close" }
Output for 5.6.24
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e145e088ab22b63f7b01db287b637196" [2]=> string(32) "e145e088ab22b63f7b01db287b637196" [3]=> string(32) "5a0fb892e5bee69f3c8308a472ed0d18" [4]=> string(54) "write 5a0fb892e5bee69f3c8308a472ed0d18: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5a0fb892e5bee69f3c8308a472ed0d18" [8]=> string(40) "destroy 5a0fb892e5bee69f3c8308a472ed0d18" [9]=> string(5) "close" }
Output for 5.6.23
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 12d655f07197b4033a1bdc531fbd114d" [2]=> string(32) "12d655f07197b4033a1bdc531fbd114d" [3]=> string(32) "cdaaec578c975ae8560b7110069c7848" [4]=> string(54) "write cdaaec578c975ae8560b7110069c7848: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cdaaec578c975ae8560b7110069c7848" [8]=> string(40) "destroy cdaaec578c975ae8560b7110069c7848" [9]=> string(5) "close" }
Output for 5.6.22
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7920b6a7c991b90ed05bb2913ff8cf36" [2]=> string(32) "7920b6a7c991b90ed05bb2913ff8cf36" [3]=> string(32) "8b392dd9ce42f3c9c9782134580c1a0f" [4]=> string(54) "write 8b392dd9ce42f3c9c9782134580c1a0f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8b392dd9ce42f3c9c9782134580c1a0f" [8]=> string(40) "destroy 8b392dd9ce42f3c9c9782134580c1a0f" [9]=> string(5) "close" }
Output for 5.6.21
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 423131e158a01e9df5bdaa9bc56b6ac0" [2]=> string(32) "423131e158a01e9df5bdaa9bc56b6ac0" [3]=> string(32) "de6320c4be6f3d64f3a1ffb2ca5bb1dc" [4]=> string(54) "write de6320c4be6f3d64f3a1ffb2ca5bb1dc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read de6320c4be6f3d64f3a1ffb2ca5bb1dc" [8]=> string(40) "destroy de6320c4be6f3d64f3a1ffb2ca5bb1dc" [9]=> string(5) "close" }
Output for 5.6.20
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0a887fab358ddb016fd6c23c72478c1a" [2]=> string(32) "0a887fab358ddb016fd6c23c72478c1a" [3]=> string(32) "54ffd3c404edc8225e29c755416e1785" [4]=> string(54) "write 54ffd3c404edc8225e29c755416e1785: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 54ffd3c404edc8225e29c755416e1785" [8]=> string(40) "destroy 54ffd3c404edc8225e29c755416e1785" [9]=> string(5) "close" }
Output for 5.6.19
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4e12db6963335d8940f9789680042c02" [2]=> string(32) "4e12db6963335d8940f9789680042c02" [3]=> string(32) "d1eb2ee6e5f7375e495032b4d52e5f7c" [4]=> string(54) "write d1eb2ee6e5f7375e495032b4d52e5f7c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d1eb2ee6e5f7375e495032b4d52e5f7c" [8]=> string(40) "destroy d1eb2ee6e5f7375e495032b4d52e5f7c" [9]=> string(5) "close" }
Output for 5.6.18
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8dc7a28cc4081c85b28b7c579e02285f" [2]=> string(32) "8dc7a28cc4081c85b28b7c579e02285f" [3]=> string(32) "ada7efed2ee252a5dbaeba28590a8d1b" [4]=> string(54) "write ada7efed2ee252a5dbaeba28590a8d1b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ada7efed2ee252a5dbaeba28590a8d1b" [8]=> string(40) "destroy ada7efed2ee252a5dbaeba28590a8d1b" [9]=> string(5) "close" }
Output for 5.6.17
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 63081c13b88d0692a267c971789720bb" [2]=> string(32) "63081c13b88d0692a267c971789720bb" [3]=> string(32) "e919d16a22ee620555e34fcf951b4e9e" [4]=> string(54) "write e919d16a22ee620555e34fcf951b4e9e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e919d16a22ee620555e34fcf951b4e9e" [8]=> string(40) "destroy e919d16a22ee620555e34fcf951b4e9e" [9]=> string(5) "close" }
Output for 5.6.16
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 17d2b873dbb868001fcbc691473461ff" [2]=> string(32) "17d2b873dbb868001fcbc691473461ff" [3]=> string(32) "47f5625146c4705d2e1c5260b71d05a2" [4]=> string(54) "write 47f5625146c4705d2e1c5260b71d05a2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 47f5625146c4705d2e1c5260b71d05a2" [8]=> string(40) "destroy 47f5625146c4705d2e1c5260b71d05a2" [9]=> string(5) "close" }
Output for 5.6.15
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 52222e8e006c56ef09199552956240cb" [2]=> string(32) "52222e8e006c56ef09199552956240cb" [3]=> string(32) "b811746d69186c054faf8caca71f876a" [4]=> string(54) "write b811746d69186c054faf8caca71f876a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b811746d69186c054faf8caca71f876a" [8]=> string(40) "destroy b811746d69186c054faf8caca71f876a" [9]=> string(5) "close" }
Output for 5.6.14
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7888acd1d0808ec629afb90acb17e7bf" [2]=> string(32) "7888acd1d0808ec629afb90acb17e7bf" [3]=> string(32) "8ee107975f571cc6dc69ef1916af0dfe" [4]=> string(54) "write 8ee107975f571cc6dc69ef1916af0dfe: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8ee107975f571cc6dc69ef1916af0dfe" [8]=> string(40) "destroy 8ee107975f571cc6dc69ef1916af0dfe" [9]=> string(5) "close" }
Output for 5.6.13
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 96e60bc670018a44395fe5c1fc6f5459" [2]=> string(32) "96e60bc670018a44395fe5c1fc6f5459" [3]=> string(32) "1f2cadece87d017ac2e31b3b6e44ab11" [4]=> string(54) "write 1f2cadece87d017ac2e31b3b6e44ab11: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 1f2cadece87d017ac2e31b3b6e44ab11" [8]=> string(40) "destroy 1f2cadece87d017ac2e31b3b6e44ab11" [9]=> string(5) "close" }
Output for 5.6.12
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cbf1c4ac42359c4bf0e996201c6ac1a8" [2]=> string(32) "cbf1c4ac42359c4bf0e996201c6ac1a8" [3]=> string(32) "629925ad8e105dff5ef078c3e9d959d5" [4]=> string(54) "write 629925ad8e105dff5ef078c3e9d959d5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 629925ad8e105dff5ef078c3e9d959d5" [8]=> string(40) "destroy 629925ad8e105dff5ef078c3e9d959d5" [9]=> string(5) "close" }
Output for 5.6.11
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f20aabeba7248ef3ad9b8975d9be800b" [2]=> string(32) "f20aabeba7248ef3ad9b8975d9be800b" [3]=> string(32) "e580e71cd89aa2865e1ed2c41852e88c" [4]=> string(54) "write e580e71cd89aa2865e1ed2c41852e88c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e580e71cd89aa2865e1ed2c41852e88c" [8]=> string(40) "destroy e580e71cd89aa2865e1ed2c41852e88c" [9]=> string(5) "close" }
Output for 5.6.10
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 69764ebb38524d406e0a3a413062d588" [2]=> string(32) "69764ebb38524d406e0a3a413062d588" [3]=> string(32) "2f0c77f1d269c599c52374d73d0b2f05" [4]=> string(54) "write 2f0c77f1d269c599c52374d73d0b2f05: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2f0c77f1d269c599c52374d73d0b2f05" [8]=> string(40) "destroy 2f0c77f1d269c599c52374d73d0b2f05" [9]=> string(5) "close" }
Output for 5.6.9
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 35bf6ece665311b07562096b058a461a" [2]=> string(32) "35bf6ece665311b07562096b058a461a" [3]=> string(32) "80368a5a709178b2e221304ea53cbaae" [4]=> string(54) "write 80368a5a709178b2e221304ea53cbaae: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 80368a5a709178b2e221304ea53cbaae" [8]=> string(40) "destroy 80368a5a709178b2e221304ea53cbaae" [9]=> string(5) "close" }
Output for 5.6.8
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 78938a5a4d1dcb25765199b98fc8aeb7" [2]=> string(32) "78938a5a4d1dcb25765199b98fc8aeb7" [3]=> string(32) "fb1458dc9355283caeec62319385c134" [4]=> string(54) "write fb1458dc9355283caeec62319385c134: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fb1458dc9355283caeec62319385c134" [8]=> string(40) "destroy fb1458dc9355283caeec62319385c134" [9]=> string(5) "close" }
Output for 5.6.7
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b51763d978e12524dcd878cbfe7e01e8" [2]=> string(32) "b51763d978e12524dcd878cbfe7e01e8" [3]=> string(32) "90619facf5ec22f52f680ee153c6e112" [4]=> string(54) "write 90619facf5ec22f52f680ee153c6e112: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 90619facf5ec22f52f680ee153c6e112" [8]=> string(40) "destroy 90619facf5ec22f52f680ee153c6e112" [9]=> string(5) "close" }
Output for 5.6.6
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f595c757c49716e91c1345c85d5c262c" [2]=> string(32) "f595c757c49716e91c1345c85d5c262c" [3]=> string(32) "db8ae48e20593197e33b84fd6dcddb65" [4]=> string(54) "write db8ae48e20593197e33b84fd6dcddb65: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read db8ae48e20593197e33b84fd6dcddb65" [8]=> string(40) "destroy db8ae48e20593197e33b84fd6dcddb65" [9]=> string(5) "close" }
Output for 5.6.5
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 149addc367df0527ee90b5cae1a3780b" [2]=> string(32) "149addc367df0527ee90b5cae1a3780b" [3]=> string(32) "685714fedec6d469cd0a7cac63c95fb9" [4]=> string(54) "write 685714fedec6d469cd0a7cac63c95fb9: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 685714fedec6d469cd0a7cac63c95fb9" [8]=> string(40) "destroy 685714fedec6d469cd0a7cac63c95fb9" [9]=> string(5) "close" }
Output for 5.6.4
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 26f957eb7a61689b8122a5efb6b1c5b3" [2]=> string(32) "26f957eb7a61689b8122a5efb6b1c5b3" [3]=> string(32) "ecd94b191330e4ac8c16129f9fea5d87" [4]=> string(54) "write ecd94b191330e4ac8c16129f9fea5d87: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ecd94b191330e4ac8c16129f9fea5d87" [8]=> string(40) "destroy ecd94b191330e4ac8c16129f9fea5d87" [9]=> string(5) "close" }
Output for 5.6.3
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a7600108410b4e307f5b21996864599a" [2]=> string(32) "a7600108410b4e307f5b21996864599a" [3]=> string(32) "8afe1eb2a168f86768f4a572d52c6630" [4]=> string(54) "write 8afe1eb2a168f86768f4a572d52c6630: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8afe1eb2a168f86768f4a572d52c6630" [8]=> string(40) "destroy 8afe1eb2a168f86768f4a572d52c6630" [9]=> string(5) "close" }
Output for 5.6.2
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8f7f073623c20347786b8fc37509c784" [2]=> string(32) "8f7f073623c20347786b8fc37509c784" [3]=> string(32) "d23f8de2b3b49c5d093739b20e6586d8" [4]=> string(54) "write d23f8de2b3b49c5d093739b20e6586d8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d23f8de2b3b49c5d093739b20e6586d8" [8]=> string(40) "destroy d23f8de2b3b49c5d093739b20e6586d8" [9]=> string(5) "close" }
Output for 5.6.1
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ffe0ff3f11dddbe028eea2ce50a8327c" [2]=> string(32) "ffe0ff3f11dddbe028eea2ce50a8327c" [3]=> string(32) "d1fe675b2e25dd999f5adc0cdc640143" [4]=> string(54) "write d1fe675b2e25dd999f5adc0cdc640143: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d1fe675b2e25dd999f5adc0cdc640143" [8]=> string(40) "destroy d1fe675b2e25dd999f5adc0cdc640143" [9]=> string(5) "close" }
Output for 5.6.0
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 51469ee2579af1c730a7b5eedc5ba5c6" [2]=> string(32) "51469ee2579af1c730a7b5eedc5ba5c6" [3]=> string(32) "e12f46087e1d3fc2873f3845c8f1576f" [4]=> string(54) "write e12f46087e1d3fc2873f3845c8f1576f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e12f46087e1d3fc2873f3845c8f1576f" [8]=> string(40) "destroy e12f46087e1d3fc2873f3845c8f1576f" [9]=> string(5) "close" }
Output for 5.5.38
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 49b44e2e0aeb28603ab89b6daddc111f" [2]=> string(32) "49b44e2e0aeb28603ab89b6daddc111f" [3]=> string(32) "4cbbec6cd83cbe55d75f78e820e86d48" [4]=> string(54) "write 4cbbec6cd83cbe55d75f78e820e86d48: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4cbbec6cd83cbe55d75f78e820e86d48" [8]=> string(40) "destroy 4cbbec6cd83cbe55d75f78e820e86d48" [9]=> string(5) "close" }
Output for 5.5.37
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ff3d6c8130835089e87e6a621fca6ca4" [2]=> string(32) "ff3d6c8130835089e87e6a621fca6ca4" [3]=> string(32) "caef01b863882b64338017cbf4fb2b47" [4]=> string(54) "write caef01b863882b64338017cbf4fb2b47: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read caef01b863882b64338017cbf4fb2b47" [8]=> string(40) "destroy caef01b863882b64338017cbf4fb2b47" [9]=> string(5) "close" }
Output for 5.5.36
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d61a98d2b6ee19736d408269981b91fa" [2]=> string(32) "d61a98d2b6ee19736d408269981b91fa" [3]=> string(32) "9d14c0e8a83e121770c6af1dc06c9053" [4]=> string(54) "write 9d14c0e8a83e121770c6af1dc06c9053: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9d14c0e8a83e121770c6af1dc06c9053" [8]=> string(40) "destroy 9d14c0e8a83e121770c6af1dc06c9053" [9]=> string(5) "close" }
Output for 5.5.35
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cc7090c089400f33bf0667417ef3eb8a" [2]=> string(32) "cc7090c089400f33bf0667417ef3eb8a" [3]=> string(32) "12174792766114cf5e468e002327c20e" [4]=> string(54) "write 12174792766114cf5e468e002327c20e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 12174792766114cf5e468e002327c20e" [8]=> string(40) "destroy 12174792766114cf5e468e002327c20e" [9]=> string(5) "close" }
Output for 5.5.34
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4d81f70aeff4b3dd602a8683bad24a35" [2]=> string(32) "4d81f70aeff4b3dd602a8683bad24a35" [3]=> string(32) "cb0f3dbaa67477874d09af564d68a248" [4]=> string(54) "write cb0f3dbaa67477874d09af564d68a248: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cb0f3dbaa67477874d09af564d68a248" [8]=> string(40) "destroy cb0f3dbaa67477874d09af564d68a248" [9]=> string(5) "close" }
Output for 5.5.33
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 557261956ef48b5a61550e252ec75ce6" [2]=> string(32) "557261956ef48b5a61550e252ec75ce6" [3]=> string(32) "ec3a45eca956cd75b10121c0264eee8b" [4]=> string(54) "write ec3a45eca956cd75b10121c0264eee8b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ec3a45eca956cd75b10121c0264eee8b" [8]=> string(40) "destroy ec3a45eca956cd75b10121c0264eee8b" [9]=> string(5) "close" }
Output for 5.5.32
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f95acdd194faf3c97caf8891370821a2" [2]=> string(32) "f95acdd194faf3c97caf8891370821a2" [3]=> string(32) "f553e7737a5ba7efe228d0f76f84ee83" [4]=> string(54) "write f553e7737a5ba7efe228d0f76f84ee83: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f553e7737a5ba7efe228d0f76f84ee83" [8]=> string(40) "destroy f553e7737a5ba7efe228d0f76f84ee83" [9]=> string(5) "close" }
Output for 5.5.31
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1c07096acf4784d131c4815931730507" [2]=> string(32) "1c07096acf4784d131c4815931730507" [3]=> string(32) "90ae248ebcee6c9504167490f480c2a8" [4]=> string(54) "write 90ae248ebcee6c9504167490f480c2a8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 90ae248ebcee6c9504167490f480c2a8" [8]=> string(40) "destroy 90ae248ebcee6c9504167490f480c2a8" [9]=> string(5) "close" }
Output for 5.5.30
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b700895503650ffed6de7ce06367c40c" [2]=> string(32) "b700895503650ffed6de7ce06367c40c" [3]=> string(32) "39615ee9227df152d464f54bbc6e9708" [4]=> string(54) "write 39615ee9227df152d464f54bbc6e9708: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 39615ee9227df152d464f54bbc6e9708" [8]=> string(40) "destroy 39615ee9227df152d464f54bbc6e9708" [9]=> string(5) "close" }
Output for 5.5.29
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 55324d84205573851f5d51263314e9e4" [2]=> string(32) "55324d84205573851f5d51263314e9e4" [3]=> string(32) "d5a7ead5d1bbb0f4494a3c76add1991f" [4]=> string(54) "write d5a7ead5d1bbb0f4494a3c76add1991f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d5a7ead5d1bbb0f4494a3c76add1991f" [8]=> string(40) "destroy d5a7ead5d1bbb0f4494a3c76add1991f" [9]=> string(5) "close" }
Output for 5.5.28
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a42556079a086d7ae606ee7da5324358" [2]=> string(32) "a42556079a086d7ae606ee7da5324358" [3]=> string(32) "25532829414d32a5dc2bab0699dfc791" [4]=> string(54) "write 25532829414d32a5dc2bab0699dfc791: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 25532829414d32a5dc2bab0699dfc791" [8]=> string(40) "destroy 25532829414d32a5dc2bab0699dfc791" [9]=> string(5) "close" }
Output for 5.5.27
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f9d02c2a02aaf9aec79bb8d72397acb7" [2]=> string(32) "f9d02c2a02aaf9aec79bb8d72397acb7" [3]=> string(32) "70880d99ff9d1546301e944cbdb0971c" [4]=> string(54) "write 70880d99ff9d1546301e944cbdb0971c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 70880d99ff9d1546301e944cbdb0971c" [8]=> string(40) "destroy 70880d99ff9d1546301e944cbdb0971c" [9]=> string(5) "close" }
Output for 5.5.26
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4eb3a7bed296389cea987efb285571a8" [2]=> string(32) "4eb3a7bed296389cea987efb285571a8" [3]=> string(32) "36eda98e36edaf16744ef2920d81cc42" [4]=> string(54) "write 36eda98e36edaf16744ef2920d81cc42: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 36eda98e36edaf16744ef2920d81cc42" [8]=> string(40) "destroy 36eda98e36edaf16744ef2920d81cc42" [9]=> string(5) "close" }
Output for 5.5.25
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b40732253d4f358ddbcaa567b4b3adeb" [2]=> string(32) "b40732253d4f358ddbcaa567b4b3adeb" [3]=> string(32) "c97a75d65cbd3665af59c9698e777451" [4]=> string(54) "write c97a75d65cbd3665af59c9698e777451: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c97a75d65cbd3665af59c9698e777451" [8]=> string(40) "destroy c97a75d65cbd3665af59c9698e777451" [9]=> string(5) "close" }
Output for 5.5.24
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read fe5afb7f44d906b347b791354300bd38" [2]=> string(32) "fe5afb7f44d906b347b791354300bd38" [3]=> string(32) "e1008915ad71a89b17ce6b2b25ea6d3c" [4]=> string(54) "write e1008915ad71a89b17ce6b2b25ea6d3c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e1008915ad71a89b17ce6b2b25ea6d3c" [8]=> string(40) "destroy e1008915ad71a89b17ce6b2b25ea6d3c" [9]=> string(5) "close" }
Output for 5.5.23
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 27b8886b63fbd49807e4b9d955226f0f" [2]=> string(32) "27b8886b63fbd49807e4b9d955226f0f" [3]=> string(32) "33f320aea5b589273c9bd2f8e19256a4" [4]=> string(54) "write 33f320aea5b589273c9bd2f8e19256a4: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 33f320aea5b589273c9bd2f8e19256a4" [8]=> string(40) "destroy 33f320aea5b589273c9bd2f8e19256a4" [9]=> string(5) "close" }
Output for 5.5.22
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 84ecb9335c11eeb307097c7e68af14a9" [2]=> string(32) "84ecb9335c11eeb307097c7e68af14a9" [3]=> string(32) "f718742bb4774c5e0157d138c2310b71" [4]=> string(54) "write f718742bb4774c5e0157d138c2310b71: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f718742bb4774c5e0157d138c2310b71" [8]=> string(40) "destroy f718742bb4774c5e0157d138c2310b71" [9]=> string(5) "close" }
Output for 5.5.21
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 25050bdd0521f8fcfff5313098cfba20" [2]=> string(32) "25050bdd0521f8fcfff5313098cfba20" [3]=> string(32) "865753a932a0df9f07aa4fae1be20e84" [4]=> string(54) "write 865753a932a0df9f07aa4fae1be20e84: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 865753a932a0df9f07aa4fae1be20e84" [8]=> string(40) "destroy 865753a932a0df9f07aa4fae1be20e84" [9]=> string(5) "close" }
Output for 5.5.20
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bcd6548a7abf2171359aec3778579f9e" [2]=> string(32) "bcd6548a7abf2171359aec3778579f9e" [3]=> string(32) "388721858ca8ce6cfd35e6098dd96e62" [4]=> string(54) "write 388721858ca8ce6cfd35e6098dd96e62: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 388721858ca8ce6cfd35e6098dd96e62" [8]=> string(40) "destroy 388721858ca8ce6cfd35e6098dd96e62" [9]=> string(5) "close" }
Output for 5.5.19
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a06f1f598ee319ba289f1908c684d337" [2]=> string(32) "a06f1f598ee319ba289f1908c684d337" [3]=> string(32) "0877e3c736b87ee973643ffbd1b943c2" [4]=> string(54) "write 0877e3c736b87ee973643ffbd1b943c2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0877e3c736b87ee973643ffbd1b943c2" [8]=> string(40) "destroy 0877e3c736b87ee973643ffbd1b943c2" [9]=> string(5) "close" }
Output for 5.5.18
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4f1d077f2492740f3dfdde4446b09855" [2]=> string(32) "4f1d077f2492740f3dfdde4446b09855" [3]=> string(32) "51e84c6a8bf86849818c6a8e96fb503a" [4]=> string(54) "write 51e84c6a8bf86849818c6a8e96fb503a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 51e84c6a8bf86849818c6a8e96fb503a" [8]=> string(40) "destroy 51e84c6a8bf86849818c6a8e96fb503a" [9]=> string(5) "close" }
Output for 5.5.17
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3df256ca72a37b7d7db18a51ed7f1ce8" [2]=> string(32) "3df256ca72a37b7d7db18a51ed7f1ce8" [3]=> string(32) "4181c544c0b92a9fafcb138dc1fc75bc" [4]=> string(54) "write 4181c544c0b92a9fafcb138dc1fc75bc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4181c544c0b92a9fafcb138dc1fc75bc" [8]=> string(40) "destroy 4181c544c0b92a9fafcb138dc1fc75bc" [9]=> string(5) "close" }
Output for 5.5.16
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3e9900f2a8e1f2d185bf6c61b40c8fb8" [2]=> string(32) "3e9900f2a8e1f2d185bf6c61b40c8fb8" [3]=> string(32) "3a9a1503564cb8bb9e8f5ed4a3e976f0" [4]=> string(54) "write 3a9a1503564cb8bb9e8f5ed4a3e976f0: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3a9a1503564cb8bb9e8f5ed4a3e976f0" [8]=> string(40) "destroy 3a9a1503564cb8bb9e8f5ed4a3e976f0" [9]=> string(5) "close" }
Output for 5.5.15
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c712430553de7340d50c9b43bed991d3" [2]=> string(32) "c712430553de7340d50c9b43bed991d3" [3]=> string(32) "55d447a0797890911846bdd664b7055c" [4]=> string(54) "write 55d447a0797890911846bdd664b7055c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 55d447a0797890911846bdd664b7055c" [8]=> string(40) "destroy 55d447a0797890911846bdd664b7055c" [9]=> string(5) "close" }
Output for 5.5.14
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 005eca144ee23a0e7c918d53fc30ecee" [2]=> string(32) "005eca144ee23a0e7c918d53fc30ecee" [3]=> string(32) "ed6e0419fea83a649c0a1d25eddcc203" [4]=> string(54) "write ed6e0419fea83a649c0a1d25eddcc203: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ed6e0419fea83a649c0a1d25eddcc203" [8]=> string(40) "destroy ed6e0419fea83a649c0a1d25eddcc203" [9]=> string(5) "close" }
Output for 5.5.13
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read de6fed775a3640f182cd845946bd64d0" [2]=> string(32) "de6fed775a3640f182cd845946bd64d0" [3]=> string(32) "e80b1d1f0a3bfda6790de281237ffbd0" [4]=> string(54) "write e80b1d1f0a3bfda6790de281237ffbd0: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e80b1d1f0a3bfda6790de281237ffbd0" [8]=> string(40) "destroy e80b1d1f0a3bfda6790de281237ffbd0" [9]=> string(5) "close" }
Output for 5.5.12
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 33f7b2e3c1b067a5c02994a82babb9cd" [2]=> string(7) "gc 1440" [3]=> string(32) "33f7b2e3c1b067a5c02994a82babb9cd" [4]=> string(32) "f50a8b8061b699905724e2487271cddf" [5]=> string(54) "write f50a8b8061b699905724e2487271cddf: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f50a8b8061b699905724e2487271cddf" [9]=> string(40) "destroy f50a8b8061b699905724e2487271cddf" [10]=> string(5) "close" }
Output for 5.5.11
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2a92090dd121099c563999955f45c798" [2]=> string(32) "2a92090dd121099c563999955f45c798" [3]=> string(32) "21698e790af7a3e3b42de9bd57152b1a" [4]=> string(54) "write 21698e790af7a3e3b42de9bd57152b1a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 21698e790af7a3e3b42de9bd57152b1a" [8]=> string(40) "destroy 21698e790af7a3e3b42de9bd57152b1a" [9]=> string(5) "close" }
Output for 5.5.10
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 811a7d1d8a4a892da9279d490149b3fa" [2]=> string(32) "811a7d1d8a4a892da9279d490149b3fa" [3]=> string(32) "06e639f2ad18164f9297d2bd3dcb0242" [4]=> string(54) "write 06e639f2ad18164f9297d2bd3dcb0242: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 06e639f2ad18164f9297d2bd3dcb0242" [8]=> string(40) "destroy 06e639f2ad18164f9297d2bd3dcb0242" [9]=> string(5) "close" }
Output for 5.5.9
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 38b263444428c98a65f5ae692a03ed12" [2]=> string(32) "38b263444428c98a65f5ae692a03ed12" [3]=> string(32) "40038e91a9ed5fc773518f2285f2c8ae" [4]=> string(54) "write 40038e91a9ed5fc773518f2285f2c8ae: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 40038e91a9ed5fc773518f2285f2c8ae" [8]=> string(40) "destroy 40038e91a9ed5fc773518f2285f2c8ae" [9]=> string(5) "close" }
Output for 5.5.8
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ea4e0690a90fda2039a1c469c129bae8" [2]=> string(32) "ea4e0690a90fda2039a1c469c129bae8" [3]=> string(32) "b2b5ce275c7fb435df1e633caa663251" [4]=> string(54) "write b2b5ce275c7fb435df1e633caa663251: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b2b5ce275c7fb435df1e633caa663251" [8]=> string(40) "destroy b2b5ce275c7fb435df1e633caa663251" [9]=> string(5) "close" }
Output for 5.5.7
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8e94f8c9fd5c811b7bde81fff806d3c6" [2]=> string(32) "8e94f8c9fd5c811b7bde81fff806d3c6" [3]=> string(32) "2f7176b133fbfa1478eab1de61cfde87" [4]=> string(54) "write 2f7176b133fbfa1478eab1de61cfde87: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2f7176b133fbfa1478eab1de61cfde87" [8]=> string(40) "destroy 2f7176b133fbfa1478eab1de61cfde87" [9]=> string(5) "close" }
Output for 5.5.6
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 272c5eece8eb97e7f14a325409a6ad08" [2]=> string(32) "272c5eece8eb97e7f14a325409a6ad08" [3]=> string(32) "cffd3ad1b7fcb430c14b4a1389f8ffb4" [4]=> string(54) "write cffd3ad1b7fcb430c14b4a1389f8ffb4: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cffd3ad1b7fcb430c14b4a1389f8ffb4" [8]=> string(40) "destroy cffd3ad1b7fcb430c14b4a1389f8ffb4" [9]=> string(5) "close" }
Output for 5.5.5
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 22b17b273084d3b5f9f3c29c1bfbc50b" [2]=> string(32) "22b17b273084d3b5f9f3c29c1bfbc50b" [3]=> string(32) "21660a5fe064ae21754fcb8bd13d6e79" [4]=> string(54) "write 21660a5fe064ae21754fcb8bd13d6e79: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 21660a5fe064ae21754fcb8bd13d6e79" [8]=> string(40) "destroy 21660a5fe064ae21754fcb8bd13d6e79" [9]=> string(5) "close" }
Output for 5.5.4
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 89ab5134d7427ea81e42a04bdbfa93ad" [2]=> string(32) "89ab5134d7427ea81e42a04bdbfa93ad" [3]=> string(32) "b260e5a915170ee34bef0da5f081e795" [4]=> string(54) "write b260e5a915170ee34bef0da5f081e795: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b260e5a915170ee34bef0da5f081e795" [8]=> string(40) "destroy b260e5a915170ee34bef0da5f081e795" [9]=> string(5) "close" }
Output for 5.5.3
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0e5c6683456a0f7649bcc2fcf1132d3c" [2]=> string(32) "0e5c6683456a0f7649bcc2fcf1132d3c" [3]=> string(32) "74ce2c62ff23b77bc178cab0c12894d9" [4]=> string(54) "write 74ce2c62ff23b77bc178cab0c12894d9: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 74ce2c62ff23b77bc178cab0c12894d9" [8]=> string(40) "destroy 74ce2c62ff23b77bc178cab0c12894d9" [9]=> string(5) "close" }
Output for 5.5.2
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5bf76c2d4a29235d305d0e5900b20ee5" [2]=> string(32) "5bf76c2d4a29235d305d0e5900b20ee5" [3]=> string(32) "66634ac258713fbccacd00da6bcad705" [4]=> string(54) "write 66634ac258713fbccacd00da6bcad705: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 66634ac258713fbccacd00da6bcad705" [8]=> string(40) "destroy 66634ac258713fbccacd00da6bcad705" [9]=> string(5) "close" }
Output for 5.5.1
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read faecfba377398d104dba7aaf0a545ebc" [2]=> string(32) "faecfba377398d104dba7aaf0a545ebc" [3]=> string(32) "d51772e0437e3c6de0f08d08fed7462d" [4]=> string(54) "write d51772e0437e3c6de0f08d08fed7462d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d51772e0437e3c6de0f08d08fed7462d" [8]=> string(40) "destroy d51772e0437e3c6de0f08d08fed7462d" [9]=> string(5) "close" }
Output for 5.5.0
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0f936500412e4545898d36c83de7d397" [2]=> string(32) "0f936500412e4545898d36c83de7d397" [3]=> string(32) "387913130cf2eb7b5c6908d63c4f41f5" [4]=> string(54) "write 387913130cf2eb7b5c6908d63c4f41f5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 387913130cf2eb7b5c6908d63c4f41f5" [8]=> string(40) "destroy 387913130cf2eb7b5c6908d63c4f41f5" [9]=> string(5) "close" }
Output for 5.4.45
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read eecb4fcb5c3c2ad92b4978bd6a79e05e" [2]=> string(32) "eecb4fcb5c3c2ad92b4978bd6a79e05e" [3]=> string(32) "98deed06e8a65312f6696a930a52f2c8" [4]=> string(54) "write 98deed06e8a65312f6696a930a52f2c8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 98deed06e8a65312f6696a930a52f2c8" [8]=> string(40) "destroy 98deed06e8a65312f6696a930a52f2c8" [9]=> string(5) "close" }
Output for 5.4.44
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3e0dd30ac4e2c6cbe94850b8e0f17452" [2]=> string(32) "3e0dd30ac4e2c6cbe94850b8e0f17452" [3]=> string(32) "f3d3428ff8aec6060e741921ee42d10a" [4]=> string(54) "write f3d3428ff8aec6060e741921ee42d10a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f3d3428ff8aec6060e741921ee42d10a" [8]=> string(40) "destroy f3d3428ff8aec6060e741921ee42d10a" [9]=> string(5) "close" }
Output for 5.4.43
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c6af5feb0e17751dc47806ce3e312876" [2]=> string(32) "c6af5feb0e17751dc47806ce3e312876" [3]=> string(32) "4dd43ec6951fcc9b72ea99f977de1043" [4]=> string(54) "write 4dd43ec6951fcc9b72ea99f977de1043: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4dd43ec6951fcc9b72ea99f977de1043" [8]=> string(40) "destroy 4dd43ec6951fcc9b72ea99f977de1043" [9]=> string(5) "close" }
Output for 5.4.42
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9a9ca6cee91bf44401684b88cca44c0f" [2]=> string(32) "9a9ca6cee91bf44401684b88cca44c0f" [3]=> string(32) "c3830424e3eac757598e916247646279" [4]=> string(54) "write c3830424e3eac757598e916247646279: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c3830424e3eac757598e916247646279" [8]=> string(40) "destroy c3830424e3eac757598e916247646279" [9]=> string(5) "close" }
Output for 5.4.41
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d310783b9cf8c0474c7569413ee8ffb4" [2]=> string(32) "d310783b9cf8c0474c7569413ee8ffb4" [3]=> string(32) "4fc38cc8011074f8c530c04974045de4" [4]=> string(54) "write 4fc38cc8011074f8c530c04974045de4: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4fc38cc8011074f8c530c04974045de4" [8]=> string(40) "destroy 4fc38cc8011074f8c530c04974045de4" [9]=> string(5) "close" }
Output for 5.4.40
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 66d1a2185f8bf951c93eb5c91e85d5e8" [2]=> string(32) "66d1a2185f8bf951c93eb5c91e85d5e8" [3]=> string(32) "2f9716e449aba4d5cbc588744a4ab1a5" [4]=> string(54) "write 2f9716e449aba4d5cbc588744a4ab1a5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2f9716e449aba4d5cbc588744a4ab1a5" [8]=> string(40) "destroy 2f9716e449aba4d5cbc588744a4ab1a5" [9]=> string(5) "close" }
Output for 5.4.39
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read fb30d3c64f17b2a9e146151786f95b72" [2]=> string(32) "fb30d3c64f17b2a9e146151786f95b72" [3]=> string(32) "a7eda5313d9fdaf5096baa4ebfbea449" [4]=> string(54) "write a7eda5313d9fdaf5096baa4ebfbea449: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a7eda5313d9fdaf5096baa4ebfbea449" [8]=> string(40) "destroy a7eda5313d9fdaf5096baa4ebfbea449" [9]=> string(5) "close" }
Output for 5.4.38
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 456a6961642f272f95ace1b444079541" [2]=> string(32) "456a6961642f272f95ace1b444079541" [3]=> string(32) "0da8785a76cc975f65b4055847f69ead" [4]=> string(54) "write 0da8785a76cc975f65b4055847f69ead: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0da8785a76cc975f65b4055847f69ead" [8]=> string(40) "destroy 0da8785a76cc975f65b4055847f69ead" [9]=> string(5) "close" }
Output for 5.4.37
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cf0d674a124bcc0c18bff6f0174c34b6" [2]=> string(32) "cf0d674a124bcc0c18bff6f0174c34b6" [3]=> string(32) "8a378ca23bc162242567f9e7d95d9082" [4]=> string(54) "write 8a378ca23bc162242567f9e7d95d9082: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8a378ca23bc162242567f9e7d95d9082" [8]=> string(40) "destroy 8a378ca23bc162242567f9e7d95d9082" [9]=> string(5) "close" }
Output for 5.4.36
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d84e4a7221d3182038e3d09024ab6e26" [2]=> string(32) "d84e4a7221d3182038e3d09024ab6e26" [3]=> string(32) "f0fe25545ee95f6970b5217cb3ad5bc3" [4]=> string(54) "write f0fe25545ee95f6970b5217cb3ad5bc3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f0fe25545ee95f6970b5217cb3ad5bc3" [8]=> string(40) "destroy f0fe25545ee95f6970b5217cb3ad5bc3" [9]=> string(5) "close" }
Output for 5.4.35
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 39c8577de624d4db5a7f94397b78e678" [2]=> string(32) "39c8577de624d4db5a7f94397b78e678" [3]=> string(32) "c148149ae35d485b2264ebf86adce917" [4]=> string(54) "write c148149ae35d485b2264ebf86adce917: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c148149ae35d485b2264ebf86adce917" [8]=> string(40) "destroy c148149ae35d485b2264ebf86adce917" [9]=> string(5) "close" }
Output for 5.4.34
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b41de5f2d55460b3f07e175794cec406" [2]=> string(32) "b41de5f2d55460b3f07e175794cec406" [3]=> string(32) "c2bed61d355a9fe8f768a936fd3ad47b" [4]=> string(54) "write c2bed61d355a9fe8f768a936fd3ad47b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c2bed61d355a9fe8f768a936fd3ad47b" [8]=> string(40) "destroy c2bed61d355a9fe8f768a936fd3ad47b" [9]=> string(5) "close" }
Output for 5.4.33
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 354f89bf634c0c5df37e374c402834d3" [2]=> string(32) "354f89bf634c0c5df37e374c402834d3" [3]=> string(32) "63e577a83770a9d240eea774531ac544" [4]=> string(54) "write 63e577a83770a9d240eea774531ac544: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 63e577a83770a9d240eea774531ac544" [8]=> string(40) "destroy 63e577a83770a9d240eea774531ac544" [9]=> string(5) "close" }
Output for 5.4.32
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1d2108d63dce87cc2b6d6edd54b5b94c" [2]=> string(32) "1d2108d63dce87cc2b6d6edd54b5b94c" [3]=> string(32) "6dccbedf9cf1c5f7a3913aeeb742bed2" [4]=> string(54) "write 6dccbedf9cf1c5f7a3913aeeb742bed2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6dccbedf9cf1c5f7a3913aeeb742bed2" [8]=> string(40) "destroy 6dccbedf9cf1c5f7a3913aeeb742bed2" [9]=> string(5) "close" }
Output for 5.4.31
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 80dfce24c3bbb7e1031f9339ae9bfcce" [2]=> string(32) "80dfce24c3bbb7e1031f9339ae9bfcce" [3]=> string(32) "300d7e734ddc2e75eae04764b5cdc707" [4]=> string(54) "write 300d7e734ddc2e75eae04764b5cdc707: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 300d7e734ddc2e75eae04764b5cdc707" [8]=> string(40) "destroy 300d7e734ddc2e75eae04764b5cdc707" [9]=> string(5) "close" }
Output for 5.4.30
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 373bdf7b7a20311be39155477aa49892" [2]=> string(32) "373bdf7b7a20311be39155477aa49892" [3]=> string(32) "1806101796ad56ffe8987f3237dd6792" [4]=> string(54) "write 1806101796ad56ffe8987f3237dd6792: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 1806101796ad56ffe8987f3237dd6792" [8]=> string(40) "destroy 1806101796ad56ffe8987f3237dd6792" [9]=> string(5) "close" }
Output for 5.4.29
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c5def68d3a72a2ae94455354e1073456" [2]=> string(7) "gc 1440" [3]=> string(32) "c5def68d3a72a2ae94455354e1073456" [4]=> string(32) "aa6560fe71901c4b361ac5a45f0da43d" [5]=> string(54) "write aa6560fe71901c4b361ac5a45f0da43d: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read aa6560fe71901c4b361ac5a45f0da43d" [9]=> string(40) "destroy aa6560fe71901c4b361ac5a45f0da43d" [10]=> string(5) "close" }
Output for 5.4.28
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7367a1ff3b5f596695e2082ccd6f8d80" [2]=> string(32) "7367a1ff3b5f596695e2082ccd6f8d80" [3]=> string(32) "3928aa60ede43680691a20f0ee8c9a9e" [4]=> string(54) "write 3928aa60ede43680691a20f0ee8c9a9e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3928aa60ede43680691a20f0ee8c9a9e" [8]=> string(40) "destroy 3928aa60ede43680691a20f0ee8c9a9e" [9]=> string(5) "close" }
Output for 5.4.27
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e4dac58e206b3f16fde20abeec2c2f80" [2]=> string(7) "gc 1440" [3]=> string(32) "e4dac58e206b3f16fde20abeec2c2f80" [4]=> string(32) "14cbff3856f52c42bc2fee3a3524d983" [5]=> string(54) "write 14cbff3856f52c42bc2fee3a3524d983: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 14cbff3856f52c42bc2fee3a3524d983" [9]=> string(40) "destroy 14cbff3856f52c42bc2fee3a3524d983" [10]=> string(5) "close" }
Output for 5.4.26
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c6f46be1d94c18f206f72eab2a024fd9" [2]=> string(32) "c6f46be1d94c18f206f72eab2a024fd9" [3]=> string(32) "9d4c8cce499ec7fb1a73555f35dba603" [4]=> string(54) "write 9d4c8cce499ec7fb1a73555f35dba603: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9d4c8cce499ec7fb1a73555f35dba603" [8]=> string(40) "destroy 9d4c8cce499ec7fb1a73555f35dba603" [9]=> string(5) "close" }
Output for 5.4.25
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7c180e239dcdabde1787bc2f8022bc22" [2]=> string(32) "7c180e239dcdabde1787bc2f8022bc22" [3]=> string(32) "b165353f44395cd7acfb45e0f0f9e38a" [4]=> string(54) "write b165353f44395cd7acfb45e0f0f9e38a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b165353f44395cd7acfb45e0f0f9e38a" [8]=> string(40) "destroy b165353f44395cd7acfb45e0f0f9e38a" [9]=> string(5) "close" }
Output for 5.4.24
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b896e74486fdf8ef952254f6a16d8909" [2]=> string(32) "b896e74486fdf8ef952254f6a16d8909" [3]=> string(32) "e3bb5e159398901aac3c012219c0d31e" [4]=> string(54) "write e3bb5e159398901aac3c012219c0d31e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e3bb5e159398901aac3c012219c0d31e" [8]=> string(40) "destroy e3bb5e159398901aac3c012219c0d31e" [9]=> string(5) "close" }
Output for 5.4.23
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0e59f455815f840bb0f2ae11c09c0c55" [2]=> string(32) "0e59f455815f840bb0f2ae11c09c0c55" [3]=> string(32) "60b4d4e5bb3ee26f297e875b43c52c7f" [4]=> string(54) "write 60b4d4e5bb3ee26f297e875b43c52c7f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 60b4d4e5bb3ee26f297e875b43c52c7f" [8]=> string(40) "destroy 60b4d4e5bb3ee26f297e875b43c52c7f" [9]=> string(5) "close" }
Output for 5.4.22
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3cd8662f6891925c0f5725d53fe00c3a" [2]=> string(32) "3cd8662f6891925c0f5725d53fe00c3a" [3]=> string(32) "c81be80cf09354156f5d98e231d0e8d1" [4]=> string(54) "write c81be80cf09354156f5d98e231d0e8d1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c81be80cf09354156f5d98e231d0e8d1" [8]=> string(40) "destroy c81be80cf09354156f5d98e231d0e8d1" [9]=> string(5) "close" }
Output for 5.4.21
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c2a367f5d69ef9fdd953a76bbb56f876" [2]=> string(32) "c2a367f5d69ef9fdd953a76bbb56f876" [3]=> string(32) "2bca020ad8470558ae085f3f9dabc1e4" [4]=> string(54) "write 2bca020ad8470558ae085f3f9dabc1e4: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2bca020ad8470558ae085f3f9dabc1e4" [8]=> string(40) "destroy 2bca020ad8470558ae085f3f9dabc1e4" [9]=> string(5) "close" }
Output for 5.4.20
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b6c3271582c67368835d8d3dffb341d5" [2]=> string(32) "b6c3271582c67368835d8d3dffb341d5" [3]=> string(32) "fa8d3eb07510b4b2678a95b0c073bfe5" [4]=> string(54) "write fa8d3eb07510b4b2678a95b0c073bfe5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fa8d3eb07510b4b2678a95b0c073bfe5" [8]=> string(40) "destroy fa8d3eb07510b4b2678a95b0c073bfe5" [9]=> string(5) "close" }
Output for 5.4.19
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d1c3d63f9235b493261e62a186ffab2e" [2]=> string(32) "d1c3d63f9235b493261e62a186ffab2e" [3]=> string(32) "d91e2adf38cd6f6d910bf0fa555e8dc8" [4]=> string(54) "write d91e2adf38cd6f6d910bf0fa555e8dc8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d91e2adf38cd6f6d910bf0fa555e8dc8" [8]=> string(40) "destroy d91e2adf38cd6f6d910bf0fa555e8dc8" [9]=> string(5) "close" }
Output for 5.4.18
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b9afb0a1496a29a6b5248b20cd9ce850" [2]=> string(32) "b9afb0a1496a29a6b5248b20cd9ce850" [3]=> string(32) "61964f31202c62e5cc7a103845e06f1a" [4]=> string(54) "write 61964f31202c62e5cc7a103845e06f1a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 61964f31202c62e5cc7a103845e06f1a" [8]=> string(40) "destroy 61964f31202c62e5cc7a103845e06f1a" [9]=> string(5) "close" }
Output for 5.4.17
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f729bcf4e02f519b048fa62ff0f9a74b" [2]=> string(32) "f729bcf4e02f519b048fa62ff0f9a74b" [3]=> string(32) "ccb5e5e16bb4f494543aac5a57f12c4a" [4]=> string(54) "write ccb5e5e16bb4f494543aac5a57f12c4a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ccb5e5e16bb4f494543aac5a57f12c4a" [8]=> string(40) "destroy ccb5e5e16bb4f494543aac5a57f12c4a" [9]=> string(5) "close" }
Output for 5.4.16
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b12ad592d9dee049c3db751ea30de8dc" [2]=> string(32) "b12ad592d9dee049c3db751ea30de8dc" [3]=> string(32) "5a18803eea1bd508d5bdc530d2b8df40" [4]=> string(54) "write 5a18803eea1bd508d5bdc530d2b8df40: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5a18803eea1bd508d5bdc530d2b8df40" [8]=> string(40) "destroy 5a18803eea1bd508d5bdc530d2b8df40" [9]=> string(5) "close" }
Output for 5.4.15
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 36527aa924d30a4717f30ff34d090931" [2]=> string(32) "36527aa924d30a4717f30ff34d090931" [3]=> string(32) "bdb06c3a863c7dfd6c928d5d450fc3db" [4]=> string(54) "write bdb06c3a863c7dfd6c928d5d450fc3db: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bdb06c3a863c7dfd6c928d5d450fc3db" [8]=> string(40) "destroy bdb06c3a863c7dfd6c928d5d450fc3db" [9]=> string(5) "close" }
Output for 5.4.14
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8ec2ed13762db6f76a7f2c30f7835586" [2]=> string(32) "8ec2ed13762db6f76a7f2c30f7835586" [3]=> string(32) "9dc0c9c950813e87401eb490195b4574" [4]=> string(54) "write 9dc0c9c950813e87401eb490195b4574: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9dc0c9c950813e87401eb490195b4574" [8]=> string(40) "destroy 9dc0c9c950813e87401eb490195b4574" [9]=> string(5) "close" }
Output for 5.4.13
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d903e18ef1d5840f5b6fe4fc0ad2f6ef" [2]=> string(32) "d903e18ef1d5840f5b6fe4fc0ad2f6ef" [3]=> string(32) "71e9b31d6cf7fcf37199b4ab8fc44231" [4]=> string(54) "write 71e9b31d6cf7fcf37199b4ab8fc44231: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 71e9b31d6cf7fcf37199b4ab8fc44231" [8]=> string(40) "destroy 71e9b31d6cf7fcf37199b4ab8fc44231" [9]=> string(5) "close" }
Output for 5.4.12
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a6fb7e50bd1e45cdf29eff6c7aa82ca6" [2]=> string(32) "a6fb7e50bd1e45cdf29eff6c7aa82ca6" [3]=> string(32) "adc6085862d4353dcc94d634b4f94d02" [4]=> string(54) "write adc6085862d4353dcc94d634b4f94d02: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read adc6085862d4353dcc94d634b4f94d02" [8]=> string(40) "destroy adc6085862d4353dcc94d634b4f94d02" [9]=> string(5) "close" }
Output for 5.4.11
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5ea945ea6d53efdb2f75c1c7245ee1aa" [2]=> string(32) "5ea945ea6d53efdb2f75c1c7245ee1aa" [3]=> string(32) "d7e311738e18cc731c0b96088c68673c" [4]=> string(54) "write d7e311738e18cc731c0b96088c68673c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d7e311738e18cc731c0b96088c68673c" [8]=> string(40) "destroy d7e311738e18cc731c0b96088c68673c" [9]=> string(5) "close" }
Output for 5.4.10
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5dd45bc9b602b67d514e6de9cb318c35" [2]=> string(32) "5dd45bc9b602b67d514e6de9cb318c35" [3]=> string(32) "e7f13a114b323de7a3282fc931ac043d" [4]=> string(54) "write e7f13a114b323de7a3282fc931ac043d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e7f13a114b323de7a3282fc931ac043d" [8]=> string(40) "destroy e7f13a114b323de7a3282fc931ac043d" [9]=> string(5) "close" }
Output for 5.4.9
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f71c891282b687d9781d053e4d12a87b" [2]=> string(32) "f71c891282b687d9781d053e4d12a87b" [3]=> string(32) "8dfd0b606e6a54dba6ab29a3571dd75a" [4]=> string(54) "write 8dfd0b606e6a54dba6ab29a3571dd75a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8dfd0b606e6a54dba6ab29a3571dd75a" [8]=> string(40) "destroy 8dfd0b606e6a54dba6ab29a3571dd75a" [9]=> string(5) "close" }
Output for 5.4.8
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dd7f7d0b1b5068824d5d314fe4c8b01f" [2]=> string(32) "dd7f7d0b1b5068824d5d314fe4c8b01f" [3]=> string(32) "6be073c62b0907f74b91997a79000c7d" [4]=> string(54) "write 6be073c62b0907f74b91997a79000c7d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6be073c62b0907f74b91997a79000c7d" [8]=> string(40) "destroy 6be073c62b0907f74b91997a79000c7d" [9]=> string(5) "close" }
Output for 5.4.7
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 59c5058717d417b0c31c166fac3ea7a9" [2]=> string(32) "59c5058717d417b0c31c166fac3ea7a9" [3]=> string(32) "a63fc6cbc0be0fffaee25cc46c0efaed" [4]=> string(54) "write a63fc6cbc0be0fffaee25cc46c0efaed: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a63fc6cbc0be0fffaee25cc46c0efaed" [8]=> string(40) "destroy a63fc6cbc0be0fffaee25cc46c0efaed" [9]=> string(5) "close" }
Output for 5.4.6
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 613d1adb90589b45d7c436399e1dac14" [2]=> string(32) "613d1adb90589b45d7c436399e1dac14" [3]=> string(32) "f1578465c533b33a69fd28ef4b3fdeb1" [4]=> string(54) "write f1578465c533b33a69fd28ef4b3fdeb1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f1578465c533b33a69fd28ef4b3fdeb1" [8]=> string(40) "destroy f1578465c533b33a69fd28ef4b3fdeb1" [9]=> string(5) "close" }
Output for 5.4.5
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c2b48f60c9d1d1aff4d39b817ff977b8" [2]=> string(32) "c2b48f60c9d1d1aff4d39b817ff977b8" [3]=> string(32) "cb7054c6bebdfa4187d68287c19d12db" [4]=> string(54) "write cb7054c6bebdfa4187d68287c19d12db: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cb7054c6bebdfa4187d68287c19d12db" [8]=> string(40) "destroy cb7054c6bebdfa4187d68287c19d12db" [9]=> string(5) "close" }
Output for 5.4.4
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dc6eb3bbb31a0790d9c9ebcf781f6b67" [2]=> string(32) "dc6eb3bbb31a0790d9c9ebcf781f6b67" [3]=> string(32) "f031a97a33d37bf2f7564c9380dd2a36" [4]=> string(54) "write f031a97a33d37bf2f7564c9380dd2a36: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f031a97a33d37bf2f7564c9380dd2a36" [8]=> string(40) "destroy f031a97a33d37bf2f7564c9380dd2a36" [9]=> string(5) "close" }
Output for 5.4.3
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 15c7dacd51fe6a22b1a589d658d7e19c" [2]=> string(32) "15c7dacd51fe6a22b1a589d658d7e19c" [3]=> string(32) "e47eb29f7c71ac419f4a2eab386eaa6e" [4]=> string(54) "write e47eb29f7c71ac419f4a2eab386eaa6e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e47eb29f7c71ac419f4a2eab386eaa6e" [8]=> string(40) "destroy e47eb29f7c71ac419f4a2eab386eaa6e" [9]=> string(5) "close" }
Output for 5.4.2
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 36a65ab4e150824f6f615ef60079213b" [2]=> string(32) "36a65ab4e150824f6f615ef60079213b" [3]=> string(32) "be21719eda68831591b15df066cee5c1" [4]=> string(54) "write be21719eda68831591b15df066cee5c1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read be21719eda68831591b15df066cee5c1" [8]=> string(40) "destroy be21719eda68831591b15df066cee5c1" [9]=> string(5) "close" }
Output for 5.4.1
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c7637f32f374f660ef9aa550b66d5194" [2]=> string(32) "c7637f32f374f660ef9aa550b66d5194" [3]=> string(32) "c2084e39c13e4f0dd5977f5a2f693b3d" [4]=> string(54) "write c2084e39c13e4f0dd5977f5a2f693b3d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c2084e39c13e4f0dd5977f5a2f693b3d" [8]=> string(40) "destroy c2084e39c13e4f0dd5977f5a2f693b3d" [9]=> string(5) "close" }
Output for 5.4.0
array(10) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5dd516a91a7e712b32b5889693559149" [2]=> string(32) "5dd516a91a7e712b32b5889693559149" [3]=> string(32) "201bd35211595492aa687aaaab78de1c" [4]=> string(54) "write 201bd35211595492aa687aaaab78de1c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 201bd35211595492aa687aaaab78de1c" [8]=> string(40) "destroy 201bd35211595492aa687aaaab78de1c" [9]=> string(5) "close" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/aSJ8u 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/aSJ8u on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/aSJ8u 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/aSJ8u on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/aSJ8u 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/aSJ8u 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/aSJ8u on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/aSJ8u on line 4
Process exited with code 255.

preferences:
260.25 ms | 401 KiB | 425 Q