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; } public function __destruct() { var_dump($this->messages); } } $handler = new MySessionHandler(); session_set_save_handler($handler, true); session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = session_id(); session_regenerate_id(); $handler->messages[] = session_id(); session_write_close(); session_start(); session_destroy(); $handler->messages[] = var_export($_SESSION, true); $handler->messages[] = session_id(); session_id('new'); session_start(); $_SESSION['john'] = 'doe';
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/BMWA8 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/BMWA8 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/BMWA8 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/BMWA8 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/BMWA8 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/BMWA8 on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/BMWA8 on line 45 Warning: session_start(): Session cannot be started after headers have already been sent in /in/BMWA8 on line 46 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/BMWA8 on line 51 Warning: session_start(): Session cannot be started after headers have already been sent in /in/BMWA8 on line 56 Warning: session_destroy(): Trying to destroy uninitialized session in /in/BMWA8 on line 57 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/BMWA8 on line 62 Warning: session_start(): Session cannot be started after headers have already been sent in /in/BMWA8 on line 63 array(4) { [0]=> string(0) "" [1]=> string(0) "" [2]=> string(27) "array ( 'foo' => 'bar', )" [3]=> string(0) "" }
Output for 8.0.0 - 8.0.30
Fatal error: Uncaught TypeError: Session callback must have a return value of type bool, null returned in /in/BMWA8:46 Stack trace: #0 /in/BMWA8(46): session_start() #1 {main} thrown in /in/BMWA8 on line 46 array(1) { [0]=> string(14) "open PHPSESSID" }
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/BMWA8 on line 46 Warning: session_start(): Session callback expects true/false return value in /in/BMWA8 on line 46 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/BMWA8 on line 46 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/BMWA8 on line 51 Warning: session_start(): Cannot start session when headers already sent in /in/BMWA8 on line 56 Warning: session_destroy(): Trying to destroy uninitialized session in /in/BMWA8 on line 57 Warning: session_id(): Cannot change session id when headers already sent in /in/BMWA8 on line 62 Warning: session_start(): Cannot start session when headers already sent in /in/BMWA8 on line 63 array(6) { [0]=> string(14) "open PHPSESSID" [1]=> string(5) "close" [2]=> string(0) "" [3]=> string(0) "" [4]=> string(27) "array ( 'foo' => 'bar', )" [5]=> string(0) "" }
Output for 7.1.0 - 7.1.33
Warning: session_start(): Session callback expects true/false return value in /in/BMWA8 on line 46 Warning: session_start(): Session callback expects true/false return value in /in/BMWA8 on line 46 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/BMWA8 on line 46
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/BMWA8 on line 46 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/BMWA8 on line 46 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.40
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 65c44dd0ea40f53c26e6dde5f064fc1e" [2]=> string(32) "65c44dd0ea40f53c26e6dde5f064fc1e" [3]=> string(32) "06cc12860763bbb0dbdefc92cd5d5301" [4]=> string(54) "write 06cc12860763bbb0dbdefc92cd5d5301: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 06cc12860763bbb0dbdefc92cd5d5301" [8]=> string(40) "destroy 06cc12860763bbb0dbdefc92cd5d5301" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.39
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 56d7d85111b07bf0a22d1b9f950a8f7d" [2]=> string(32) "56d7d85111b07bf0a22d1b9f950a8f7d" [3]=> string(32) "6c33d8585609c2bc4f2c44253654bd3a" [4]=> string(54) "write 6c33d8585609c2bc4f2c44253654bd3a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6c33d8585609c2bc4f2c44253654bd3a" [8]=> string(40) "destroy 6c33d8585609c2bc4f2c44253654bd3a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.38
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6cb9df0600a2458b641efc549db7c362" [2]=> string(32) "6cb9df0600a2458b641efc549db7c362" [3]=> string(32) "872d210a7d3b1d4ec6e84dc7fb88747c" [4]=> string(54) "write 872d210a7d3b1d4ec6e84dc7fb88747c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 872d210a7d3b1d4ec6e84dc7fb88747c" [8]=> string(40) "destroy 872d210a7d3b1d4ec6e84dc7fb88747c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.37
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a4ef1b231c95fae5c0f86a9332c01d2e" [2]=> string(32) "a4ef1b231c95fae5c0f86a9332c01d2e" [3]=> string(32) "7dd9b3b0fc72b3ff2adb0fd23f39f215" [4]=> string(54) "write 7dd9b3b0fc72b3ff2adb0fd23f39f215: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7dd9b3b0fc72b3ff2adb0fd23f39f215" [8]=> string(40) "destroy 7dd9b3b0fc72b3ff2adb0fd23f39f215" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.36
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1d553848409bb5704905af25f2fe4495" [2]=> string(32) "1d553848409bb5704905af25f2fe4495" [3]=> string(32) "3e111fb4820bb3aa2790b118284f92e9" [4]=> string(54) "write 3e111fb4820bb3aa2790b118284f92e9: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3e111fb4820bb3aa2790b118284f92e9" [8]=> string(40) "destroy 3e111fb4820bb3aa2790b118284f92e9" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.35
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e2fbaccf82685a48711654600b88edcc" [2]=> string(32) "e2fbaccf82685a48711654600b88edcc" [3]=> string(32) "2938d10a8429c5961da3f8b7c16a7dce" [4]=> string(54) "write 2938d10a8429c5961da3f8b7c16a7dce: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2938d10a8429c5961da3f8b7c16a7dce" [8]=> string(40) "destroy 2938d10a8429c5961da3f8b7c16a7dce" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.34
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c344c22b9858826b2eb7fe2ec1d3ce0f" [2]=> string(32) "c344c22b9858826b2eb7fe2ec1d3ce0f" [3]=> string(32) "37d15264eddc4b04d27432e02027b4d3" [4]=> string(54) "write 37d15264eddc4b04d27432e02027b4d3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 37d15264eddc4b04d27432e02027b4d3" [8]=> string(40) "destroy 37d15264eddc4b04d27432e02027b4d3" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.33
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7294b5fa2883647b484926f67f4ff2b4" [2]=> string(32) "7294b5fa2883647b484926f67f4ff2b4" [3]=> string(32) "622242336014344ebe3dcb73940880f3" [4]=> string(54) "write 622242336014344ebe3dcb73940880f3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 622242336014344ebe3dcb73940880f3" [8]=> string(40) "destroy 622242336014344ebe3dcb73940880f3" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.32
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 63de3befdbf1cae1b1c066f562159ed6" [2]=> string(32) "63de3befdbf1cae1b1c066f562159ed6" [3]=> string(32) "b0d323aaa99765820187a3deb9b95b43" [4]=> string(54) "write b0d323aaa99765820187a3deb9b95b43: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b0d323aaa99765820187a3deb9b95b43" [8]=> string(40) "destroy b0d323aaa99765820187a3deb9b95b43" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.31
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7eedd8ac70f3c32cd7ec01c44f6885de" [2]=> string(32) "7eedd8ac70f3c32cd7ec01c44f6885de" [3]=> string(32) "8f5cde472cf809e61d61ac9f7e50fee2" [4]=> string(54) "write 8f5cde472cf809e61d61ac9f7e50fee2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8f5cde472cf809e61d61ac9f7e50fee2" [8]=> string(40) "destroy 8f5cde472cf809e61d61ac9f7e50fee2" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.30
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 60d30be6ecfa6a0146f07b2cf52ae577" [2]=> string(32) "60d30be6ecfa6a0146f07b2cf52ae577" [3]=> string(32) "a8fc7f4b6f5e7efda832db1e73854d62" [4]=> string(54) "write a8fc7f4b6f5e7efda832db1e73854d62: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a8fc7f4b6f5e7efda832db1e73854d62" [8]=> string(40) "destroy a8fc7f4b6f5e7efda832db1e73854d62" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.29
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 39956f23a2d5172db2ac632ca1ab8578" [2]=> string(32) "39956f23a2d5172db2ac632ca1ab8578" [3]=> string(32) "5b67060570957baf6dfab65add2f694b" [4]=> string(54) "write 5b67060570957baf6dfab65add2f694b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5b67060570957baf6dfab65add2f694b" [8]=> string(40) "destroy 5b67060570957baf6dfab65add2f694b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.28
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read fa888474dbcad5ac7545546740b0f0e9" [2]=> string(32) "fa888474dbcad5ac7545546740b0f0e9" [3]=> string(32) "af1d6c64514377e1b7093a40376c7213" [4]=> string(54) "write af1d6c64514377e1b7093a40376c7213: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read af1d6c64514377e1b7093a40376c7213" [8]=> string(40) "destroy af1d6c64514377e1b7093a40376c7213" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.27
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3b0ff7c8eb2e61a6d2485a03d433e3fa" [2]=> string(32) "3b0ff7c8eb2e61a6d2485a03d433e3fa" [3]=> string(32) "c415f197c35bb92f16a9fae59d8c814f" [4]=> string(54) "write c415f197c35bb92f16a9fae59d8c814f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c415f197c35bb92f16a9fae59d8c814f" [8]=> string(40) "destroy c415f197c35bb92f16a9fae59d8c814f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.26
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6908375053e59c6605a6058f99ed4f4d" [2]=> string(32) "6908375053e59c6605a6058f99ed4f4d" [3]=> string(32) "0d4dc247ffebc21794f1f1ae44971d86" [4]=> string(54) "write 0d4dc247ffebc21794f1f1ae44971d86: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0d4dc247ffebc21794f1f1ae44971d86" [8]=> string(40) "destroy 0d4dc247ffebc21794f1f1ae44971d86" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.25
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3d7b457c5b341b32cca1ed2347a7228c" [2]=> string(32) "3d7b457c5b341b32cca1ed2347a7228c" [3]=> string(32) "638aac0a3b1f78447a6c0c51865660b1" [4]=> string(54) "write 638aac0a3b1f78447a6c0c51865660b1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 638aac0a3b1f78447a6c0c51865660b1" [8]=> string(40) "destroy 638aac0a3b1f78447a6c0c51865660b1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.24
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 70fccc623c88547e3af58ce84d8eb265" [2]=> string(32) "70fccc623c88547e3af58ce84d8eb265" [3]=> string(32) "65ca0ec45b93f401c1631277a25aae09" [4]=> string(54) "write 65ca0ec45b93f401c1631277a25aae09: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 65ca0ec45b93f401c1631277a25aae09" [8]=> string(40) "destroy 65ca0ec45b93f401c1631277a25aae09" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.23
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1262cfbe4fd98f1d57d65005ed880373" [2]=> string(32) "1262cfbe4fd98f1d57d65005ed880373" [3]=> string(32) "f775d82618e44eb9751242c5bb346aa0" [4]=> string(54) "write f775d82618e44eb9751242c5bb346aa0: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f775d82618e44eb9751242c5bb346aa0" [8]=> string(40) "destroy f775d82618e44eb9751242c5bb346aa0" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.22
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c3e2866d38081ff6b4fce0a88c432527" [2]=> string(32) "c3e2866d38081ff6b4fce0a88c432527" [3]=> string(32) "fe94396e9c1c960989fd90ca23d109ad" [4]=> string(54) "write fe94396e9c1c960989fd90ca23d109ad: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fe94396e9c1c960989fd90ca23d109ad" [8]=> string(40) "destroy fe94396e9c1c960989fd90ca23d109ad" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.21
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9a59d46c6c6486d31405ab8aee239ea9" [2]=> string(32) "9a59d46c6c6486d31405ab8aee239ea9" [3]=> string(32) "349d98dfa28d4e7f7514ef7add0e3c59" [4]=> string(54) "write 349d98dfa28d4e7f7514ef7add0e3c59: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 349d98dfa28d4e7f7514ef7add0e3c59" [8]=> string(40) "destroy 349d98dfa28d4e7f7514ef7add0e3c59" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.20
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8b7872cd0dc14926c98707c6cd820384" [2]=> string(32) "8b7872cd0dc14926c98707c6cd820384" [3]=> string(32) "6faca9fd59790ac34572f1de9d74ba14" [4]=> string(54) "write 6faca9fd59790ac34572f1de9d74ba14: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6faca9fd59790ac34572f1de9d74ba14" [8]=> string(40) "destroy 6faca9fd59790ac34572f1de9d74ba14" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.19
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a201ab3902685b824d348f60a9e9c9e7" [2]=> string(32) "a201ab3902685b824d348f60a9e9c9e7" [3]=> string(32) "dfc06aad4dc507171623ee23af84e8ba" [4]=> string(54) "write dfc06aad4dc507171623ee23af84e8ba: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read dfc06aad4dc507171623ee23af84e8ba" [8]=> string(40) "destroy dfc06aad4dc507171623ee23af84e8ba" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.18
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5ce2e88a3a04228d800493ca64620db3" [2]=> string(32) "5ce2e88a3a04228d800493ca64620db3" [3]=> string(32) "129251767ad0899ebe561d7adde70fd1" [4]=> string(54) "write 129251767ad0899ebe561d7adde70fd1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 129251767ad0899ebe561d7adde70fd1" [8]=> string(40) "destroy 129251767ad0899ebe561d7adde70fd1" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.17
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read fb02bb060af4c7bef5462bbbb5e2c5d7" [2]=> string(32) "fb02bb060af4c7bef5462bbbb5e2c5d7" [3]=> string(32) "fa32d1b7da9633dbd1a16221813b1a18" [4]=> string(54) "write fa32d1b7da9633dbd1a16221813b1a18: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fa32d1b7da9633dbd1a16221813b1a18" [8]=> string(40) "destroy fa32d1b7da9633dbd1a16221813b1a18" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.16
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 08b03f2cd45f42948845ac633758c9c0" [2]=> string(32) "08b03f2cd45f42948845ac633758c9c0" [3]=> string(32) "6f893627839015f51e09eab2de5b30fd" [4]=> string(54) "write 6f893627839015f51e09eab2de5b30fd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6f893627839015f51e09eab2de5b30fd" [8]=> string(40) "destroy 6f893627839015f51e09eab2de5b30fd" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.15
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d33c09e5a93667b256b7eb24fc1fec1b" [2]=> string(32) "d33c09e5a93667b256b7eb24fc1fec1b" [3]=> string(32) "50d672b98216f9463654df2cd59b9818" [4]=> string(54) "write 50d672b98216f9463654df2cd59b9818: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 50d672b98216f9463654df2cd59b9818" [8]=> string(40) "destroy 50d672b98216f9463654df2cd59b9818" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.14
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 63d3a005128e5f8ff53b4e17fee9de88" [2]=> string(32) "63d3a005128e5f8ff53b4e17fee9de88" [3]=> string(32) "c8c9c2e8b977659a1bb4fe79148dff3d" [4]=> string(54) "write c8c9c2e8b977659a1bb4fe79148dff3d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c8c9c2e8b977659a1bb4fe79148dff3d" [8]=> string(40) "destroy c8c9c2e8b977659a1bb4fe79148dff3d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.13
array(17) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f8477a86b45af8b7780aef2904f201c3" [2]=> string(32) "f8477a86b45af8b7780aef2904f201c3" [3]=> string(32) "dca9076008a44e222b68fef8e963d8de" [4]=> string(54) "write dca9076008a44e222b68fef8e963d8de: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read dca9076008a44e222b68fef8e963d8de" [8]=> string(7) "gc 1440" [9]=> string(40) "destroy dca9076008a44e222b68fef8e963d8de" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(8) "read new" [15]=> string(26) "write new: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.12
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3b1b67a4515df412395db107f87afa78" [2]=> string(32) "3b1b67a4515df412395db107f87afa78" [3]=> string(32) "e938b7f6817a0b5b4c7c3ff248cf9caa" [4]=> string(54) "write e938b7f6817a0b5b4c7c3ff248cf9caa: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e938b7f6817a0b5b4c7c3ff248cf9caa" [8]=> string(40) "destroy e938b7f6817a0b5b4c7c3ff248cf9caa" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.11
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 10443f6f7595e2b52431ffdd01d38e01" [2]=> string(32) "10443f6f7595e2b52431ffdd01d38e01" [3]=> string(32) "1bee6c9ec8cae3fe0a564a498edcc716" [4]=> string(54) "write 1bee6c9ec8cae3fe0a564a498edcc716: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 1bee6c9ec8cae3fe0a564a498edcc716" [8]=> string(40) "destroy 1bee6c9ec8cae3fe0a564a498edcc716" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.10
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0970d8a8791f123cec364dd175d9df47" [2]=> string(32) "0970d8a8791f123cec364dd175d9df47" [3]=> string(32) "939a5fcf36ffc76360d8c09befdd2e54" [4]=> string(54) "write 939a5fcf36ffc76360d8c09befdd2e54: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 939a5fcf36ffc76360d8c09befdd2e54" [8]=> string(40) "destroy 939a5fcf36ffc76360d8c09befdd2e54" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.9
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 160316605685aa93a3b9941f21bedf47" [2]=> string(32) "160316605685aa93a3b9941f21bedf47" [3]=> string(32) "eae1b04301295558ed997c1a6b772c14" [4]=> string(54) "write eae1b04301295558ed997c1a6b772c14: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read eae1b04301295558ed997c1a6b772c14" [8]=> string(40) "destroy eae1b04301295558ed997c1a6b772c14" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.8
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 95225677fbccd4145527a2c82e9fcff8" [2]=> string(32) "95225677fbccd4145527a2c82e9fcff8" [3]=> string(32) "b07ced7842ebcf3a20fbc4e9fc2910d6" [4]=> string(54) "write b07ced7842ebcf3a20fbc4e9fc2910d6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b07ced7842ebcf3a20fbc4e9fc2910d6" [8]=> string(40) "destroy b07ced7842ebcf3a20fbc4e9fc2910d6" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.7
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 74769dd67bad1743d359efc935f8b09b" [2]=> string(32) "74769dd67bad1743d359efc935f8b09b" [3]=> string(32) "1010ff22411dcab95391231adf399bba" [4]=> string(54) "write 1010ff22411dcab95391231adf399bba: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 1010ff22411dcab95391231adf399bba" [8]=> string(40) "destroy 1010ff22411dcab95391231adf399bba" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.6
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 14e6322de6c5c03e96f40aed12428a8b" [2]=> string(32) "14e6322de6c5c03e96f40aed12428a8b" [3]=> string(32) "3ca68432b5d4f26b54dcacc95254013b" [4]=> string(54) "write 3ca68432b5d4f26b54dcacc95254013b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3ca68432b5d4f26b54dcacc95254013b" [8]=> string(40) "destroy 3ca68432b5d4f26b54dcacc95254013b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.5
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 86a9ab85d657af9d67bcefe2f471cf5c" [2]=> string(32) "86a9ab85d657af9d67bcefe2f471cf5c" [3]=> string(32) "f4847c00769706635d137d4aea884f06" [4]=> string(54) "write f4847c00769706635d137d4aea884f06: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f4847c00769706635d137d4aea884f06" [8]=> string(40) "destroy f4847c00769706635d137d4aea884f06" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.4
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0c12cedb2e188c11dcca00d84cacd325" [2]=> string(32) "0c12cedb2e188c11dcca00d84cacd325" [3]=> string(32) "d219436102ceacd710c19102fda95a5d" [4]=> string(54) "write d219436102ceacd710c19102fda95a5d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d219436102ceacd710c19102fda95a5d" [8]=> string(40) "destroy d219436102ceacd710c19102fda95a5d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.3
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 180c5047b5ff3e929c270f7aaddf6fae" [2]=> string(32) "180c5047b5ff3e929c270f7aaddf6fae" [3]=> string(32) "c4b87c71c556e7fb7d9c9dd396a22a43" [4]=> string(54) "write c4b87c71c556e7fb7d9c9dd396a22a43: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c4b87c71c556e7fb7d9c9dd396a22a43" [8]=> string(40) "destroy c4b87c71c556e7fb7d9c9dd396a22a43" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.2
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 06971e74a2ce59a1aafc7f1510e281b4" [2]=> string(32) "06971e74a2ce59a1aafc7f1510e281b4" [3]=> string(32) "e6050e5c55eeaf2aaddc079ca93022b8" [4]=> string(54) "write e6050e5c55eeaf2aaddc079ca93022b8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e6050e5c55eeaf2aaddc079ca93022b8" [8]=> string(40) "destroy e6050e5c55eeaf2aaddc079ca93022b8" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.1
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a6cac14968fb86f23566c0633d178879" [2]=> string(32) "a6cac14968fb86f23566c0633d178879" [3]=> string(32) "fc35118ebb453c3fd960d95318d45a83" [4]=> string(54) "write fc35118ebb453c3fd960d95318d45a83: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fc35118ebb453c3fd960d95318d45a83" [8]=> string(40) "destroy fc35118ebb453c3fd960d95318d45a83" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.6.0
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2094d9b22b5248cf41234df3fea88845" [2]=> string(32) "2094d9b22b5248cf41234df3fea88845" [3]=> string(32) "36b6aa29ea6bcf2031496d20849f97a5" [4]=> string(54) "write 36b6aa29ea6bcf2031496d20849f97a5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 36b6aa29ea6bcf2031496d20849f97a5" [8]=> string(40) "destroy 36b6aa29ea6bcf2031496d20849f97a5" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.38
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b8fa26c264368274abd67f07a03e6c77" [2]=> string(32) "b8fa26c264368274abd67f07a03e6c77" [3]=> string(32) "9358a65be3ba950be6ae34b426049d00" [4]=> string(54) "write 9358a65be3ba950be6ae34b426049d00: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9358a65be3ba950be6ae34b426049d00" [8]=> string(40) "destroy 9358a65be3ba950be6ae34b426049d00" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.37
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 04aa35c296f550dccfeadc814e7f848e" [2]=> string(32) "04aa35c296f550dccfeadc814e7f848e" [3]=> string(32) "8b0baab97aaca39cbd1015202a093e6d" [4]=> string(54) "write 8b0baab97aaca39cbd1015202a093e6d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8b0baab97aaca39cbd1015202a093e6d" [8]=> string(40) "destroy 8b0baab97aaca39cbd1015202a093e6d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.36
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 22c94fd0d60dfe1c2c349a36b814d666" [2]=> string(32) "22c94fd0d60dfe1c2c349a36b814d666" [3]=> string(32) "480aff2c523fef3bdaf140d460c7ee97" [4]=> string(54) "write 480aff2c523fef3bdaf140d460c7ee97: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 480aff2c523fef3bdaf140d460c7ee97" [8]=> string(40) "destroy 480aff2c523fef3bdaf140d460c7ee97" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.35
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cef8b32542ce43376c99c66f0b03394c" [2]=> string(32) "cef8b32542ce43376c99c66f0b03394c" [3]=> string(32) "ef0159a5055a984435be73415a7bf7fd" [4]=> string(54) "write ef0159a5055a984435be73415a7bf7fd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ef0159a5055a984435be73415a7bf7fd" [8]=> string(40) "destroy ef0159a5055a984435be73415a7bf7fd" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.34
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 40d7d24440386d12ea01db88f05cf59f" [2]=> string(32) "40d7d24440386d12ea01db88f05cf59f" [3]=> string(32) "7ae12f0f2da413d2a6410feeadf2aac4" [4]=> string(54) "write 7ae12f0f2da413d2a6410feeadf2aac4: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7ae12f0f2da413d2a6410feeadf2aac4" [8]=> string(40) "destroy 7ae12f0f2da413d2a6410feeadf2aac4" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.33
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c79eb67d5f72281e8483f9e9288ec9df" [2]=> string(32) "c79eb67d5f72281e8483f9e9288ec9df" [3]=> string(32) "35d2232e6cd613bfac5752c198e5dc9b" [4]=> string(54) "write 35d2232e6cd613bfac5752c198e5dc9b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 35d2232e6cd613bfac5752c198e5dc9b" [8]=> string(40) "destroy 35d2232e6cd613bfac5752c198e5dc9b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.32
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d6accc5161ac2abfbf5b722f2731cfa8" [2]=> string(32) "d6accc5161ac2abfbf5b722f2731cfa8" [3]=> string(32) "bb6e4ef9936f5ce9198b135e212e20b7" [4]=> string(54) "write bb6e4ef9936f5ce9198b135e212e20b7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bb6e4ef9936f5ce9198b135e212e20b7" [8]=> string(40) "destroy bb6e4ef9936f5ce9198b135e212e20b7" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.31
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read da6f225e39c978e56e3697d686603008" [2]=> string(32) "da6f225e39c978e56e3697d686603008" [3]=> string(32) "0c340d10352d7933c482faa6d039c43a" [4]=> string(54) "write 0c340d10352d7933c482faa6d039c43a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0c340d10352d7933c482faa6d039c43a" [8]=> string(40) "destroy 0c340d10352d7933c482faa6d039c43a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.30
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 71614cdaa150878a31d467633efff6a2" [2]=> string(32) "71614cdaa150878a31d467633efff6a2" [3]=> string(32) "7c425a10c1460b364daf8093c1830adf" [4]=> string(54) "write 7c425a10c1460b364daf8093c1830adf: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7c425a10c1460b364daf8093c1830adf" [8]=> string(40) "destroy 7c425a10c1460b364daf8093c1830adf" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.29
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c85ae8d45ab49eb2586c7eec89ea20da" [2]=> string(32) "c85ae8d45ab49eb2586c7eec89ea20da" [3]=> string(32) "1fba3b6bafef8cfbc8f476479d7e70c2" [4]=> string(54) "write 1fba3b6bafef8cfbc8f476479d7e70c2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 1fba3b6bafef8cfbc8f476479d7e70c2" [8]=> string(40) "destroy 1fba3b6bafef8cfbc8f476479d7e70c2" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.28
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7657737cad6cd14537efea4aac189faa" [2]=> string(32) "7657737cad6cd14537efea4aac189faa" [3]=> string(32) "f23aa6dd8c3b823ee711265315b144db" [4]=> string(54) "write f23aa6dd8c3b823ee711265315b144db: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f23aa6dd8c3b823ee711265315b144db" [8]=> string(40) "destroy f23aa6dd8c3b823ee711265315b144db" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.27
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 618ac1dd4cf4586c540d9afe72f6cb71" [2]=> string(32) "618ac1dd4cf4586c540d9afe72f6cb71" [3]=> string(32) "60966903f35b9cc72833279e208ec756" [4]=> string(54) "write 60966903f35b9cc72833279e208ec756: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 60966903f35b9cc72833279e208ec756" [8]=> string(40) "destroy 60966903f35b9cc72833279e208ec756" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.26
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9f2707e9f446e697298bd97a07141c3e" [2]=> string(32) "9f2707e9f446e697298bd97a07141c3e" [3]=> string(32) "b600b0f45e3663dd7e35b48b4096192c" [4]=> string(54) "write b600b0f45e3663dd7e35b48b4096192c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b600b0f45e3663dd7e35b48b4096192c" [8]=> string(40) "destroy b600b0f45e3663dd7e35b48b4096192c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.25
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dbc6b0fbe9ba09537b13a8052d7fdf3b" [2]=> string(32) "dbc6b0fbe9ba09537b13a8052d7fdf3b" [3]=> string(32) "369a193d7afe9a796069a127ea1319fb" [4]=> string(54) "write 369a193d7afe9a796069a127ea1319fb: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 369a193d7afe9a796069a127ea1319fb" [8]=> string(40) "destroy 369a193d7afe9a796069a127ea1319fb" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.24
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3c2a39098482294fb1475fbbfd99c342" [2]=> string(32) "3c2a39098482294fb1475fbbfd99c342" [3]=> string(32) "0087ca66d137c941cb539de680e639c4" [4]=> string(54) "write 0087ca66d137c941cb539de680e639c4: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0087ca66d137c941cb539de680e639c4" [8]=> string(40) "destroy 0087ca66d137c941cb539de680e639c4" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.23
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6037dc7e8a9664cb25593501e90681f5" [2]=> string(32) "6037dc7e8a9664cb25593501e90681f5" [3]=> string(32) "ceaad569d2b4b64cf887c6826c671785" [4]=> string(54) "write ceaad569d2b4b64cf887c6826c671785: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ceaad569d2b4b64cf887c6826c671785" [8]=> string(40) "destroy ceaad569d2b4b64cf887c6826c671785" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.22
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 851411a3784450ea38e5c155257fcbf1" [2]=> string(32) "851411a3784450ea38e5c155257fcbf1" [3]=> string(32) "537a8e3825f2ad97559e45bbb3fb3682" [4]=> string(54) "write 537a8e3825f2ad97559e45bbb3fb3682: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 537a8e3825f2ad97559e45bbb3fb3682" [8]=> string(40) "destroy 537a8e3825f2ad97559e45bbb3fb3682" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.21
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8c6ffdb2c2ace9cffedf586674069e20" [2]=> string(32) "8c6ffdb2c2ace9cffedf586674069e20" [3]=> string(32) "f9c2eb3b9da5b0d8a574e24644977ba7" [4]=> string(54) "write f9c2eb3b9da5b0d8a574e24644977ba7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f9c2eb3b9da5b0d8a574e24644977ba7" [8]=> string(40) "destroy f9c2eb3b9da5b0d8a574e24644977ba7" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.20
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 786881604dc22dff3db375433f97d86c" [2]=> string(32) "786881604dc22dff3db375433f97d86c" [3]=> string(32) "54d928b58aebfdd5a85caaf5fd439628" [4]=> string(54) "write 54d928b58aebfdd5a85caaf5fd439628: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 54d928b58aebfdd5a85caaf5fd439628" [8]=> string(40) "destroy 54d928b58aebfdd5a85caaf5fd439628" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.19
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 91bcbb0c213b06a2cd1716ac121f1f31" [2]=> string(32) "91bcbb0c213b06a2cd1716ac121f1f31" [3]=> string(32) "afcd52dba25fcef22c6dda1e8aa84e90" [4]=> string(54) "write afcd52dba25fcef22c6dda1e8aa84e90: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read afcd52dba25fcef22c6dda1e8aa84e90" [8]=> string(40) "destroy afcd52dba25fcef22c6dda1e8aa84e90" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.18
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5b85d6c340f6cf49f4e1e01cc1ddb175" [2]=> string(32) "5b85d6c340f6cf49f4e1e01cc1ddb175" [3]=> string(32) "fa437b2e5818debf67b04b336246fb80" [4]=> string(54) "write fa437b2e5818debf67b04b336246fb80: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fa437b2e5818debf67b04b336246fb80" [8]=> string(40) "destroy fa437b2e5818debf67b04b336246fb80" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.17
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2657cb0b3f49de4d15196e02983658ca" [2]=> string(32) "2657cb0b3f49de4d15196e02983658ca" [3]=> string(32) "f0c9e0b4ee6f5d647185bba9a2ac8b05" [4]=> string(54) "write f0c9e0b4ee6f5d647185bba9a2ac8b05: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f0c9e0b4ee6f5d647185bba9a2ac8b05" [8]=> string(40) "destroy f0c9e0b4ee6f5d647185bba9a2ac8b05" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.16
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c977b265762ce393f4439cf7f07af2a9" [2]=> string(32) "c977b265762ce393f4439cf7f07af2a9" [3]=> string(32) "e9c6c9e23af08e6c2688daf479cc30ee" [4]=> string(54) "write e9c6c9e23af08e6c2688daf479cc30ee: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e9c6c9e23af08e6c2688daf479cc30ee" [8]=> string(40) "destroy e9c6c9e23af08e6c2688daf479cc30ee" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.15
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f3f3a323958e3a74c00b3f01ce0a4366" [2]=> string(32) "f3f3a323958e3a74c00b3f01ce0a4366" [3]=> string(32) "44774bd9e59d2937c72333f5786d9fb5" [4]=> string(54) "write 44774bd9e59d2937c72333f5786d9fb5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 44774bd9e59d2937c72333f5786d9fb5" [8]=> string(40) "destroy 44774bd9e59d2937c72333f5786d9fb5" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.14
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8e73159c95af62d0cbfcb73702aa224b" [2]=> string(32) "8e73159c95af62d0cbfcb73702aa224b" [3]=> string(32) "481698afb0fb40c3da809047d1230dbd" [4]=> string(54) "write 481698afb0fb40c3da809047d1230dbd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 481698afb0fb40c3da809047d1230dbd" [8]=> string(40) "destroy 481698afb0fb40c3da809047d1230dbd" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.13
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c3aba6f4af1705ca3b6e76c12e10a3c2" [2]=> string(32) "c3aba6f4af1705ca3b6e76c12e10a3c2" [3]=> string(32) "c9412c4528d72152ad8a30083cf0e99d" [4]=> string(54) "write c9412c4528d72152ad8a30083cf0e99d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c9412c4528d72152ad8a30083cf0e99d" [8]=> string(40) "destroy c9412c4528d72152ad8a30083cf0e99d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.12
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5565f7e1c126f41c1e4c75a25dfc6e8e" [2]=> string(32) "5565f7e1c126f41c1e4c75a25dfc6e8e" [3]=> string(32) "a2eb8c4a4e4963f221482ea9e1a47c9c" [4]=> string(54) "write a2eb8c4a4e4963f221482ea9e1a47c9c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a2eb8c4a4e4963f221482ea9e1a47c9c" [8]=> string(40) "destroy a2eb8c4a4e4963f221482ea9e1a47c9c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.11
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 881bf2c9b646a59045b59cdf8341e5d9" [2]=> string(32) "881bf2c9b646a59045b59cdf8341e5d9" [3]=> string(32) "1946878ec840279c8c60460cae1e1a38" [4]=> string(54) "write 1946878ec840279c8c60460cae1e1a38: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 1946878ec840279c8c60460cae1e1a38" [8]=> string(40) "destroy 1946878ec840279c8c60460cae1e1a38" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.10
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 14c90f7574e4cdf2c75a8f83a9d07ba6" [2]=> string(32) "14c90f7574e4cdf2c75a8f83a9d07ba6" [3]=> string(32) "c37df488c2adac3edaff41714af5a104" [4]=> string(54) "write c37df488c2adac3edaff41714af5a104: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c37df488c2adac3edaff41714af5a104" [8]=> string(40) "destroy c37df488c2adac3edaff41714af5a104" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.9
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4218e4a8dfdf88d22e84aee5ce0de9e6" [2]=> string(32) "4218e4a8dfdf88d22e84aee5ce0de9e6" [3]=> string(32) "e3a35c8cf8959c91ee58532251522246" [4]=> string(54) "write e3a35c8cf8959c91ee58532251522246: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e3a35c8cf8959c91ee58532251522246" [8]=> string(40) "destroy e3a35c8cf8959c91ee58532251522246" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.8
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 61c51aed35720f1573ddeaebeadc3f0c" [2]=> string(32) "61c51aed35720f1573ddeaebeadc3f0c" [3]=> string(32) "75674dfb78abb753a60d62c216c61ad4" [4]=> string(54) "write 75674dfb78abb753a60d62c216c61ad4: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 75674dfb78abb753a60d62c216c61ad4" [8]=> string(40) "destroy 75674dfb78abb753a60d62c216c61ad4" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.7
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c49665915db142ef46bf8af39a7718c5" [2]=> string(32) "c49665915db142ef46bf8af39a7718c5" [3]=> string(32) "e051b426e3f2ab305ed9bb99f5eee2c6" [4]=> string(54) "write e051b426e3f2ab305ed9bb99f5eee2c6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e051b426e3f2ab305ed9bb99f5eee2c6" [8]=> string(40) "destroy e051b426e3f2ab305ed9bb99f5eee2c6" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.6
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a4e4b018fceb1de8c6c4af6e41f849b6" [2]=> string(32) "a4e4b018fceb1de8c6c4af6e41f849b6" [3]=> string(32) "10f3350e465bf0bdd1ab3d9abca55ef6" [4]=> string(54) "write 10f3350e465bf0bdd1ab3d9abca55ef6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 10f3350e465bf0bdd1ab3d9abca55ef6" [8]=> string(40) "destroy 10f3350e465bf0bdd1ab3d9abca55ef6" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.5
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 017c360361d19de4fee3da8f0b511926" [2]=> string(32) "017c360361d19de4fee3da8f0b511926" [3]=> string(32) "8721fdabcd7bdf857e5034dacce48e4a" [4]=> string(54) "write 8721fdabcd7bdf857e5034dacce48e4a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8721fdabcd7bdf857e5034dacce48e4a" [8]=> string(40) "destroy 8721fdabcd7bdf857e5034dacce48e4a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.4
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2b5846d81f65ad388d306352cba4cef4" [2]=> string(32) "2b5846d81f65ad388d306352cba4cef4" [3]=> string(32) "fac53189e3302c53093a5aa80c474450" [4]=> string(54) "write fac53189e3302c53093a5aa80c474450: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fac53189e3302c53093a5aa80c474450" [8]=> string(40) "destroy fac53189e3302c53093a5aa80c474450" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.3
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b0eb6b6a6d5f18b10b745d2296a24f10" [2]=> string(32) "b0eb6b6a6d5f18b10b745d2296a24f10" [3]=> string(32) "d1c93160a5f9118709d9f8a08d342231" [4]=> string(54) "write d1c93160a5f9118709d9f8a08d342231: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d1c93160a5f9118709d9f8a08d342231" [8]=> string(40) "destroy d1c93160a5f9118709d9f8a08d342231" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.2
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f60bd29e311d4cbd8058461fa5f6fe16" [2]=> string(32) "f60bd29e311d4cbd8058461fa5f6fe16" [3]=> string(32) "03cb41cda03906d40f7851d7505c2940" [4]=> string(54) "write 03cb41cda03906d40f7851d7505c2940: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 03cb41cda03906d40f7851d7505c2940" [8]=> string(40) "destroy 03cb41cda03906d40f7851d7505c2940" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.1
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read aac95aa4d7e633534d48594002c19df4" [2]=> string(32) "aac95aa4d7e633534d48594002c19df4" [3]=> string(32) "8917066049d6fe0d47bb1bd51002f518" [4]=> string(54) "write 8917066049d6fe0d47bb1bd51002f518: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8917066049d6fe0d47bb1bd51002f518" [8]=> string(40) "destroy 8917066049d6fe0d47bb1bd51002f518" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.5.0
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 38dd56c91b47dbae255ceb253e805a45" [2]=> string(32) "38dd56c91b47dbae255ceb253e805a45" [3]=> string(32) "9ffe78daea739befcec9cf042fe52552" [4]=> string(54) "write 9ffe78daea739befcec9cf042fe52552: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9ffe78daea739befcec9cf042fe52552" [8]=> string(40) "destroy 9ffe78daea739befcec9cf042fe52552" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.45
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d19569f5bcb54135b349b90d2777dfcb" [2]=> string(32) "d19569f5bcb54135b349b90d2777dfcb" [3]=> string(32) "40e5c7e159fc60e23e47c054977d6f7f" [4]=> string(54) "write 40e5c7e159fc60e23e47c054977d6f7f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 40e5c7e159fc60e23e47c054977d6f7f" [8]=> string(40) "destroy 40e5c7e159fc60e23e47c054977d6f7f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.44
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8a4618a7315c55fb32a3e11ac3f62ef7" [2]=> string(32) "8a4618a7315c55fb32a3e11ac3f62ef7" [3]=> string(32) "c7129149ea64f9e2886f27a60cf15b6d" [4]=> string(54) "write c7129149ea64f9e2886f27a60cf15b6d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c7129149ea64f9e2886f27a60cf15b6d" [8]=> string(40) "destroy c7129149ea64f9e2886f27a60cf15b6d" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.43
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cb861000e4b6e71989da0efdcbbe48ae" [2]=> string(32) "cb861000e4b6e71989da0efdcbbe48ae" [3]=> string(32) "78be1fbb80cab1a23f920e02ceb13820" [4]=> string(54) "write 78be1fbb80cab1a23f920e02ceb13820: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 78be1fbb80cab1a23f920e02ceb13820" [8]=> string(40) "destroy 78be1fbb80cab1a23f920e02ceb13820" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.42
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 274a795744bd2002e7901aedb980adf2" [2]=> string(32) "274a795744bd2002e7901aedb980adf2" [3]=> string(32) "caceaff1f0c95d350e6ffee82c969ced" [4]=> string(54) "write caceaff1f0c95d350e6ffee82c969ced: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read caceaff1f0c95d350e6ffee82c969ced" [8]=> string(40) "destroy caceaff1f0c95d350e6ffee82c969ced" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.41
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e9cbfc8a02bfe7c60a0d8a25f1d9529b" [2]=> string(32) "e9cbfc8a02bfe7c60a0d8a25f1d9529b" [3]=> string(32) "734b094d51a2324103e8c44998098b9b" [4]=> string(54) "write 734b094d51a2324103e8c44998098b9b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 734b094d51a2324103e8c44998098b9b" [8]=> string(40) "destroy 734b094d51a2324103e8c44998098b9b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.40
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e09802a8133ffd685ec70896f00f184f" [2]=> string(32) "e09802a8133ffd685ec70896f00f184f" [3]=> string(32) "fa7f5a5f6f33fbdb8ad27693d218f74b" [4]=> string(54) "write fa7f5a5f6f33fbdb8ad27693d218f74b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fa7f5a5f6f33fbdb8ad27693d218f74b" [8]=> string(40) "destroy fa7f5a5f6f33fbdb8ad27693d218f74b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.39
array(17) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3238830e2c2f003cec7b80598a24bc57" [2]=> string(7) "gc 1440" [3]=> string(32) "3238830e2c2f003cec7b80598a24bc57" [4]=> string(32) "70d64dbfde4f0f662ac42a9a5eab426f" [5]=> string(54) "write 70d64dbfde4f0f662ac42a9a5eab426f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 70d64dbfde4f0f662ac42a9a5eab426f" [9]=> string(40) "destroy 70d64dbfde4f0f662ac42a9a5eab426f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(0) "" [13]=> string(14) "open PHPSESSID" [14]=> string(8) "read new" [15]=> string(26) "write new: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.38
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c1204129ca6f24cf3af691de658cd7c7" [2]=> string(32) "c1204129ca6f24cf3af691de658cd7c7" [3]=> string(32) "975c295c4c034f582e70688db6947710" [4]=> string(54) "write 975c295c4c034f582e70688db6947710: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 975c295c4c034f582e70688db6947710" [8]=> string(40) "destroy 975c295c4c034f582e70688db6947710" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.37
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6cc1b22af1a30016d3fee3d121013ac3" [2]=> string(32) "6cc1b22af1a30016d3fee3d121013ac3" [3]=> string(32) "f0507023a69683a5606675aad0d9c74b" [4]=> string(54) "write f0507023a69683a5606675aad0d9c74b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f0507023a69683a5606675aad0d9c74b" [8]=> string(40) "destroy f0507023a69683a5606675aad0d9c74b" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.36
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 05d2b2a593ca1e679d4b5366f5d30dfa" [2]=> string(32) "05d2b2a593ca1e679d4b5366f5d30dfa" [3]=> string(32) "4c4da2b41dc83f77f449c2ccfcd088ee" [4]=> string(54) "write 4c4da2b41dc83f77f449c2ccfcd088ee: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4c4da2b41dc83f77f449c2ccfcd088ee" [8]=> string(40) "destroy 4c4da2b41dc83f77f449c2ccfcd088ee" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.35
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d46f04f0ca23a6404380acd488eb8606" [2]=> string(32) "d46f04f0ca23a6404380acd488eb8606" [3]=> string(32) "e44c629d38629002dac5056cfe87be63" [4]=> string(54) "write e44c629d38629002dac5056cfe87be63: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e44c629d38629002dac5056cfe87be63" [8]=> string(40) "destroy e44c629d38629002dac5056cfe87be63" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.34
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8c5079a380e278f6ec86d320419161e1" [2]=> string(32) "8c5079a380e278f6ec86d320419161e1" [3]=> string(32) "2b144010e6bf91ec041da40a40efd155" [4]=> string(54) "write 2b144010e6bf91ec041da40a40efd155: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2b144010e6bf91ec041da40a40efd155" [8]=> string(40) "destroy 2b144010e6bf91ec041da40a40efd155" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.33
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1dd81710f58330cca2899ec3f01489ea" [2]=> string(32) "1dd81710f58330cca2899ec3f01489ea" [3]=> string(32) "0f18b74b57d28f12778181a0ebbb5f82" [4]=> string(54) "write 0f18b74b57d28f12778181a0ebbb5f82: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0f18b74b57d28f12778181a0ebbb5f82" [8]=> string(40) "destroy 0f18b74b57d28f12778181a0ebbb5f82" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.32
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4292f28e3ab9d9b3c31da43bb881aa72" [2]=> string(32) "4292f28e3ab9d9b3c31da43bb881aa72" [3]=> string(32) "082b30a553b9b3b289834eba051a65f7" [4]=> string(54) "write 082b30a553b9b3b289834eba051a65f7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 082b30a553b9b3b289834eba051a65f7" [8]=> string(40) "destroy 082b30a553b9b3b289834eba051a65f7" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.31
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 33a72a26e835f115e60e2ffb345aca1a" [2]=> string(32) "33a72a26e835f115e60e2ffb345aca1a" [3]=> string(32) "ee941ee535afca13d1eaae306bb118f6" [4]=> string(54) "write ee941ee535afca13d1eaae306bb118f6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ee941ee535afca13d1eaae306bb118f6" [8]=> string(40) "destroy ee941ee535afca13d1eaae306bb118f6" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.30
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 48dd49e33a3f34a6c54c738bd6ae7239" [2]=> string(32) "48dd49e33a3f34a6c54c738bd6ae7239" [3]=> string(32) "058977fe8175e2811f35e2c6b54aed02" [4]=> string(54) "write 058977fe8175e2811f35e2c6b54aed02: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 058977fe8175e2811f35e2c6b54aed02" [8]=> string(40) "destroy 058977fe8175e2811f35e2c6b54aed02" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.29
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 85738133d2f35995730031ef2eb5fda0" [2]=> string(32) "85738133d2f35995730031ef2eb5fda0" [3]=> string(32) "bf572695cbd8ecd3266ba110e29926ea" [4]=> string(54) "write bf572695cbd8ecd3266ba110e29926ea: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bf572695cbd8ecd3266ba110e29926ea" [8]=> string(40) "destroy bf572695cbd8ecd3266ba110e29926ea" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.28
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6768b487946e68b0a6558c728832b799" [2]=> string(32) "6768b487946e68b0a6558c728832b799" [3]=> string(32) "212c1203872657d2c0c56a747f59064c" [4]=> string(54) "write 212c1203872657d2c0c56a747f59064c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 212c1203872657d2c0c56a747f59064c" [8]=> string(40) "destroy 212c1203872657d2c0c56a747f59064c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.27
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b9420ac92eb2a0aa24e4941c0b15471c" [2]=> string(32) "b9420ac92eb2a0aa24e4941c0b15471c" [3]=> string(32) "4d5136e1ad5529619096c6389aae4e5c" [4]=> string(54) "write 4d5136e1ad5529619096c6389aae4e5c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4d5136e1ad5529619096c6389aae4e5c" [8]=> string(40) "destroy 4d5136e1ad5529619096c6389aae4e5c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.26
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read adfa9ad36d611b99d3a25a879f69d7c5" [2]=> string(32) "adfa9ad36d611b99d3a25a879f69d7c5" [3]=> string(32) "f9f545abb90815f17e4f3bae2ffbc84c" [4]=> string(54) "write f9f545abb90815f17e4f3bae2ffbc84c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f9f545abb90815f17e4f3bae2ffbc84c" [8]=> string(40) "destroy f9f545abb90815f17e4f3bae2ffbc84c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.25
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4d46c9ddbe11c6126b9c5c7ad39fa7b0" [2]=> string(32) "4d46c9ddbe11c6126b9c5c7ad39fa7b0" [3]=> string(32) "78a61ede0ba459e65fd4c7267da95815" [4]=> string(54) "write 78a61ede0ba459e65fd4c7267da95815: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 78a61ede0ba459e65fd4c7267da95815" [8]=> string(40) "destroy 78a61ede0ba459e65fd4c7267da95815" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.24
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read eb60c3a92712f346481ec30a9d23c7a1" [2]=> string(32) "eb60c3a92712f346481ec30a9d23c7a1" [3]=> string(32) "84da526816e4b158d43450ca38746419" [4]=> string(54) "write 84da526816e4b158d43450ca38746419: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 84da526816e4b158d43450ca38746419" [8]=> string(40) "destroy 84da526816e4b158d43450ca38746419" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.23
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a9cad00c4916980648ef87d7ba246f0f" [2]=> string(32) "a9cad00c4916980648ef87d7ba246f0f" [3]=> string(32) "6ef2781f7f6b81ab4ebfb57ad096d2fc" [4]=> string(54) "write 6ef2781f7f6b81ab4ebfb57ad096d2fc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6ef2781f7f6b81ab4ebfb57ad096d2fc" [8]=> string(40) "destroy 6ef2781f7f6b81ab4ebfb57ad096d2fc" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.22
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3194d64f3d90d805943d005343b10ec4" [2]=> string(32) "3194d64f3d90d805943d005343b10ec4" [3]=> string(32) "5d2ec4801d014304fd0de1f813ab272c" [4]=> string(54) "write 5d2ec4801d014304fd0de1f813ab272c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5d2ec4801d014304fd0de1f813ab272c" [8]=> string(40) "destroy 5d2ec4801d014304fd0de1f813ab272c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.21
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 837c0629951615628d64f150bbed1921" [2]=> string(32) "837c0629951615628d64f150bbed1921" [3]=> string(32) "282238c0c2a5cdf9d805158a10f4a29a" [4]=> string(54) "write 282238c0c2a5cdf9d805158a10f4a29a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 282238c0c2a5cdf9d805158a10f4a29a" [8]=> string(40) "destroy 282238c0c2a5cdf9d805158a10f4a29a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.20
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 11f776ea7953bfa2766d652d2361ac76" [2]=> string(32) "11f776ea7953bfa2766d652d2361ac76" [3]=> string(32) "0040af661a48ac02ab694760da4c7561" [4]=> string(54) "write 0040af661a48ac02ab694760da4c7561: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0040af661a48ac02ab694760da4c7561" [8]=> string(40) "destroy 0040af661a48ac02ab694760da4c7561" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.19
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8d7f301040c1329a029cfa16fa759a80" [2]=> string(32) "8d7f301040c1329a029cfa16fa759a80" [3]=> string(32) "ce3d18524306d5122210607e9ce1e0ce" [4]=> string(54) "write ce3d18524306d5122210607e9ce1e0ce: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ce3d18524306d5122210607e9ce1e0ce" [8]=> string(40) "destroy ce3d18524306d5122210607e9ce1e0ce" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.18
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ee371298320e55bebd734fea83803f1c" [2]=> string(32) "ee371298320e55bebd734fea83803f1c" [3]=> string(32) "8dd5b0ec6eb4ecdedb87f2fe404559f5" [4]=> string(54) "write 8dd5b0ec6eb4ecdedb87f2fe404559f5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8dd5b0ec6eb4ecdedb87f2fe404559f5" [8]=> string(40) "destroy 8dd5b0ec6eb4ecdedb87f2fe404559f5" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.17
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 05dffda69ef717f6a70aa99a54a66d5d" [2]=> string(32) "05dffda69ef717f6a70aa99a54a66d5d" [3]=> string(32) "0a862462ede1780ee704e639ff72218c" [4]=> string(54) "write 0a862462ede1780ee704e639ff72218c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0a862462ede1780ee704e639ff72218c" [8]=> string(40) "destroy 0a862462ede1780ee704e639ff72218c" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.16
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 93eddc30f3a00430d9ff680d3fe59903" [2]=> string(32) "93eddc30f3a00430d9ff680d3fe59903" [3]=> string(32) "d46b3c1096a511d96b6804a54a35e745" [4]=> string(54) "write d46b3c1096a511d96b6804a54a35e745: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d46b3c1096a511d96b6804a54a35e745" [8]=> string(40) "destroy d46b3c1096a511d96b6804a54a35e745" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.15
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 342ab1bab7547fc2aab153dfecaf7e03" [2]=> string(32) "342ab1bab7547fc2aab153dfecaf7e03" [3]=> string(32) "ed75bafae610d614ad68bb1acf79a44f" [4]=> string(54) "write ed75bafae610d614ad68bb1acf79a44f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ed75bafae610d614ad68bb1acf79a44f" [8]=> string(40) "destroy ed75bafae610d614ad68bb1acf79a44f" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.14
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dda79a7a5262ec0447bbcbe552d00d0d" [2]=> string(32) "dda79a7a5262ec0447bbcbe552d00d0d" [3]=> string(32) "8b2901ddc11ac496130324810aa5b6b8" [4]=> string(54) "write 8b2901ddc11ac496130324810aa5b6b8: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8b2901ddc11ac496130324810aa5b6b8" [8]=> string(40) "destroy 8b2901ddc11ac496130324810aa5b6b8" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.13
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 64c437b149a634ee05cf61c3eab9e06f" [2]=> string(32) "64c437b149a634ee05cf61c3eab9e06f" [3]=> string(32) "28cb06b4dfc89fbf02382b5e10f603f2" [4]=> string(54) "write 28cb06b4dfc89fbf02382b5e10f603f2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 28cb06b4dfc89fbf02382b5e10f603f2" [8]=> string(40) "destroy 28cb06b4dfc89fbf02382b5e10f603f2" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.12
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5fa5994529fc380c955b6101077220be" [2]=> string(32) "5fa5994529fc380c955b6101077220be" [3]=> string(32) "6be0ed15cfd5037f884fb3e0e629d441" [4]=> string(54) "write 6be0ed15cfd5037f884fb3e0e629d441: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6be0ed15cfd5037f884fb3e0e629d441" [8]=> string(40) "destroy 6be0ed15cfd5037f884fb3e0e629d441" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.11
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1cc137f21ce8523c436856fd2ae45fbe" [2]=> string(32) "1cc137f21ce8523c436856fd2ae45fbe" [3]=> string(32) "708b8f7348677ae128bb1b35400eb550" [4]=> string(54) "write 708b8f7348677ae128bb1b35400eb550: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 708b8f7348677ae128bb1b35400eb550" [8]=> string(40) "destroy 708b8f7348677ae128bb1b35400eb550" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.10
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 54aa89e6d721fb2ccb49a1b4f82a7e39" [2]=> string(32) "54aa89e6d721fb2ccb49a1b4f82a7e39" [3]=> string(32) "eb2e82ce939c8c35005f925efa258039" [4]=> string(54) "write eb2e82ce939c8c35005f925efa258039: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read eb2e82ce939c8c35005f925efa258039" [8]=> string(40) "destroy eb2e82ce939c8c35005f925efa258039" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.9
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 06e3487737d95ea8484249d4d370b803" [2]=> string(32) "06e3487737d95ea8484249d4d370b803" [3]=> string(32) "384691a1425f268c52fc8aa88def46f3" [4]=> string(54) "write 384691a1425f268c52fc8aa88def46f3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 384691a1425f268c52fc8aa88def46f3" [8]=> string(40) "destroy 384691a1425f268c52fc8aa88def46f3" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.8
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 426df5c3eba29bddd68b7d6c19e713c7" [2]=> string(32) "426df5c3eba29bddd68b7d6c19e713c7" [3]=> string(32) "ff381d8d4a5472018f913873032023fc" [4]=> string(54) "write ff381d8d4a5472018f913873032023fc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ff381d8d4a5472018f913873032023fc" [8]=> string(40) "destroy ff381d8d4a5472018f913873032023fc" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.7
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 43dc744ff803a3ad55b1235cd3fc578d" [2]=> string(32) "43dc744ff803a3ad55b1235cd3fc578d" [3]=> string(32) "76eaa448e4135a18b894d572efcb397a" [4]=> string(54) "write 76eaa448e4135a18b894d572efcb397a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 76eaa448e4135a18b894d572efcb397a" [8]=> string(40) "destroy 76eaa448e4135a18b894d572efcb397a" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.6
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8f08ff9332629c8b7b1a705d338b35f4" [2]=> string(32) "8f08ff9332629c8b7b1a705d338b35f4" [3]=> string(32) "5d535c535ade4636eddbc6d8c8777ffd" [4]=> string(54) "write 5d535c535ade4636eddbc6d8c8777ffd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5d535c535ade4636eddbc6d8c8777ffd" [8]=> string(40) "destroy 5d535c535ade4636eddbc6d8c8777ffd" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.5
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 084f8bc2ba92eb70db29b6eb4b0ccf55" [2]=> string(32) "084f8bc2ba92eb70db29b6eb4b0ccf55" [3]=> string(32) "ca71c92825b5ceb936193429d2c5c3bf" [4]=> string(54) "write ca71c92825b5ceb936193429d2c5c3bf: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ca71c92825b5ceb936193429d2c5c3bf" [8]=> string(40) "destroy ca71c92825b5ceb936193429d2c5c3bf" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.4
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c7e356ffda77d45089ad9cc9d1ac01ed" [2]=> string(32) "c7e356ffda77d45089ad9cc9d1ac01ed" [3]=> string(32) "01348e4b5b697081e6c90955bbb271e2" [4]=> string(54) "write 01348e4b5b697081e6c90955bbb271e2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 01348e4b5b697081e6c90955bbb271e2" [8]=> string(40) "destroy 01348e4b5b697081e6c90955bbb271e2" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.3
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 40dafc106021ede9e4d1401aa5809693" [2]=> string(32) "40dafc106021ede9e4d1401aa5809693" [3]=> string(32) "401f3e343c4764a171c48c8c9ebec7b5" [4]=> string(54) "write 401f3e343c4764a171c48c8c9ebec7b5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 401f3e343c4764a171c48c8c9ebec7b5" [8]=> string(40) "destroy 401f3e343c4764a171c48c8c9ebec7b5" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.2
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 0c0e11fab1e39fe99f2e6fa1307e6890" [2]=> string(32) "0c0e11fab1e39fe99f2e6fa1307e6890" [3]=> string(32) "cf5ff19bd6d902afff446d341564ca29" [4]=> string(54) "write cf5ff19bd6d902afff446d341564ca29: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cf5ff19bd6d902afff446d341564ca29" [8]=> string(40) "destroy cf5ff19bd6d902afff446d341564ca29" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.1
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ab3a90abd86a76ce12b7380d48a0d409" [2]=> string(32) "ab3a90abd86a76ce12b7380d48a0d409" [3]=> string(32) "b5bb26e7458e75fd80139e8bdb340104" [4]=> string(54) "write b5bb26e7458e75fd80139e8bdb340104: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b5bb26e7458e75fd80139e8bdb340104" [8]=> string(40) "destroy b5bb26e7458e75fd80139e8bdb340104" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.4.0
array(16) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 965e0e7997039865ae592191adfaa445" [2]=> string(32) "965e0e7997039865ae592191adfaa445" [3]=> string(32) "c2dfad8f93a7235a72fd1c33e480539e" [4]=> string(54) "write c2dfad8f93a7235a72fd1c33e480539e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c2dfad8f93a7235a72fd1c33e480539e" [8]=> string(40) "destroy c2dfad8f93a7235a72fd1c33e480539e" [9]=> string(5) "close" [10]=> string(9) "array ( )" [11]=> string(0) "" [12]=> string(14) "open PHPSESSID" [13]=> string(8) "read new" [14]=> string(26) "write new: john|s:3:"doe";" [15]=> string(5) "close" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/BMWA8 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/BMWA8 on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/BMWA8 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/BMWA8 on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/BMWA8 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/BMWA8 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/BMWA8 on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/BMWA8 on line 4
Process exited with code 255.

preferences:
309.67 ms | 401 KiB | 460 Q