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 ' . var_export($maxlifetime, true); } public function __destruct() { var_dump($this->messages); } } $handler = new MySessionHandler(); session_set_save_handler($handler, true); $handler->messages[] = 'isset($_SESSION): ' . var_export(isset($_SESSION), true); $_SESSION['before'] = 'start'; session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = 'current session_id: ' . session_id(); session_regenerate_id(true); $handler->messages[] = 'current session_id: ' . session_id(); exit(); session_write_close(); session_start(); session_destroy(); $handler->messages[] = var_export($_SESSION, true); $handler->messages[] = 'current session_id: ' . var_export(session_id(), true); session_id('explicit-session-id'); 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/dYsIM 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/dYsIM 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/dYsIM 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/dYsIM 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/dYsIM 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/dYsIM on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/dYsIM on line 45 Warning: session_start(): Session cannot be started after headers have already been sent in /in/dYsIM on line 50 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/dYsIM on line 55 array(3) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(20) "current session_id: " [2]=> string(20) "current session_id: " }
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/dYsIM:50 Stack trace: #0 /in/dYsIM(50): session_start() #1 {main} thrown in /in/dYsIM on line 50 array(2) { [0]=> string(23) "isset($_SESSION): false" [1]=> 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/dYsIM on line 50 Warning: session_start(): Session callback expects true/false return value in /in/dYsIM on line 50 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/dYsIM on line 50 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/dYsIM on line 55 array(5) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(5) "close" [3]=> string(20) "current session_id: " [4]=> string(20) "current session_id: " }
Output for 7.1.0 - 7.1.33
Warning: session_start(): Session callback expects true/false return value in /in/dYsIM on line 50 Warning: session_start(): Session callback expects true/false return value in /in/dYsIM on line 50 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/dYsIM on line 50
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/dYsIM on line 50 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/dYsIM on line 50 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(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f96d88f5c43da9c96a4e440189f9eff8" [3]=> string(52) "current session_id: f96d88f5c43da9c96a4e440189f9eff8" [4]=> string(40) "destroy f96d88f5c43da9c96a4e440189f9eff8" [5]=> string(52) "current session_id: d5747f905bf5bfbf78a143079b37ed20" [6]=> string(54) "write d5747f905bf5bfbf78a143079b37ed20: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.39
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 80b93e8447005cd8522745065ab935c2" [3]=> string(52) "current session_id: 80b93e8447005cd8522745065ab935c2" [4]=> string(40) "destroy 80b93e8447005cd8522745065ab935c2" [5]=> string(52) "current session_id: aeeb1a68709074b3209f2a21b7edaece" [6]=> string(54) "write aeeb1a68709074b3209f2a21b7edaece: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.38
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 884c3255ec6bfb0ead8c9033ed9e2dfe" [3]=> string(52) "current session_id: 884c3255ec6bfb0ead8c9033ed9e2dfe" [4]=> string(40) "destroy 884c3255ec6bfb0ead8c9033ed9e2dfe" [5]=> string(52) "current session_id: 03d32a3f45bcedb16ecf6486b24175ff" [6]=> string(54) "write 03d32a3f45bcedb16ecf6486b24175ff: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.37
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f0ca963b8c9407cef8086d9ddcff5d6a" [3]=> string(52) "current session_id: f0ca963b8c9407cef8086d9ddcff5d6a" [4]=> string(40) "destroy f0ca963b8c9407cef8086d9ddcff5d6a" [5]=> string(52) "current session_id: c43d98dfb346957b9f8d53b55da49896" [6]=> string(54) "write c43d98dfb346957b9f8d53b55da49896: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.36
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 34ec75a1388bfa37f09719f2f381a602" [3]=> string(52) "current session_id: 34ec75a1388bfa37f09719f2f381a602" [4]=> string(40) "destroy 34ec75a1388bfa37f09719f2f381a602" [5]=> string(52) "current session_id: 418c02dd4ad79f3a28ff81525ff73b9c" [6]=> string(54) "write 418c02dd4ad79f3a28ff81525ff73b9c: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.35
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bf0b46b8ba5771842a8dd4f0f847c98e" [3]=> string(52) "current session_id: bf0b46b8ba5771842a8dd4f0f847c98e" [4]=> string(40) "destroy bf0b46b8ba5771842a8dd4f0f847c98e" [5]=> string(52) "current session_id: dc743bfe01b3fa5bff57a9ce3d57c88f" [6]=> string(54) "write dc743bfe01b3fa5bff57a9ce3d57c88f: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.34
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6ebda6c611c260c7d617adce900cecba" [3]=> string(52) "current session_id: 6ebda6c611c260c7d617adce900cecba" [4]=> string(40) "destroy 6ebda6c611c260c7d617adce900cecba" [5]=> string(52) "current session_id: d22ab6e855be517deb0cfb4dbd0676d0" [6]=> string(54) "write d22ab6e855be517deb0cfb4dbd0676d0: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.33
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read edbd2be53cb0fe332491ab00c21d5830" [3]=> string(52) "current session_id: edbd2be53cb0fe332491ab00c21d5830" [4]=> string(40) "destroy edbd2be53cb0fe332491ab00c21d5830" [5]=> string(52) "current session_id: 4983f11a71fcc4828366ec12173ff880" [6]=> string(54) "write 4983f11a71fcc4828366ec12173ff880: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.32
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read aa5801dde6de3128ce805d3762b680fd" [3]=> string(52) "current session_id: aa5801dde6de3128ce805d3762b680fd" [4]=> string(40) "destroy aa5801dde6de3128ce805d3762b680fd" [5]=> string(52) "current session_id: 7f0974bf7fd2524e3ca0f50efe28705c" [6]=> string(54) "write 7f0974bf7fd2524e3ca0f50efe28705c: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.31
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9ded60e63dac14f03fc2e0919ac805cb" [3]=> string(52) "current session_id: 9ded60e63dac14f03fc2e0919ac805cb" [4]=> string(40) "destroy 9ded60e63dac14f03fc2e0919ac805cb" [5]=> string(52) "current session_id: ceaa0522d72810aa8a33947f4cdb6a44" [6]=> string(54) "write ceaa0522d72810aa8a33947f4cdb6a44: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.30
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read be43ffcd26ca98397329b3246a834c99" [3]=> string(52) "current session_id: be43ffcd26ca98397329b3246a834c99" [4]=> string(40) "destroy be43ffcd26ca98397329b3246a834c99" [5]=> string(52) "current session_id: 2ed231143b6c7353d6d7afd76638df35" [6]=> string(54) "write 2ed231143b6c7353d6d7afd76638df35: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.29
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 92d6c59de0349d0c4452229205441418" [3]=> string(52) "current session_id: 92d6c59de0349d0c4452229205441418" [4]=> string(40) "destroy 92d6c59de0349d0c4452229205441418" [5]=> string(52) "current session_id: 6966ce2c71834dd8ce783e46980f8326" [6]=> string(54) "write 6966ce2c71834dd8ce783e46980f8326: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.28
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8ec1aa96f961eaee0ff502aac65f0ad6" [3]=> string(52) "current session_id: 8ec1aa96f961eaee0ff502aac65f0ad6" [4]=> string(40) "destroy 8ec1aa96f961eaee0ff502aac65f0ad6" [5]=> string(52) "current session_id: 6f4013175708681defb788f139954684" [6]=> string(54) "write 6f4013175708681defb788f139954684: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.27
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 902f584181d94ef98b8920a0b065288f" [3]=> string(52) "current session_id: 902f584181d94ef98b8920a0b065288f" [4]=> string(40) "destroy 902f584181d94ef98b8920a0b065288f" [5]=> string(52) "current session_id: a832476fea86d4dc96e7b461259f004b" [6]=> string(54) "write a832476fea86d4dc96e7b461259f004b: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.26
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 75d7cc31ddb0c9634b4bb2748dcd8c8f" [3]=> string(52) "current session_id: 75d7cc31ddb0c9634b4bb2748dcd8c8f" [4]=> string(40) "destroy 75d7cc31ddb0c9634b4bb2748dcd8c8f" [5]=> string(52) "current session_id: b00522c31774475ec31a6b77179b3005" [6]=> string(54) "write b00522c31774475ec31a6b77179b3005: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.25
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 66bb35d4475abb3809db65536f1ec586" [3]=> string(52) "current session_id: 66bb35d4475abb3809db65536f1ec586" [4]=> string(40) "destroy 66bb35d4475abb3809db65536f1ec586" [5]=> string(52) "current session_id: 7aab5012f7fd5ce2e93f4261511483cc" [6]=> string(54) "write 7aab5012f7fd5ce2e93f4261511483cc: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.24
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4543e1ab57e33d07cf9edaa7e6e2b27f" [3]=> string(52) "current session_id: 4543e1ab57e33d07cf9edaa7e6e2b27f" [4]=> string(40) "destroy 4543e1ab57e33d07cf9edaa7e6e2b27f" [5]=> string(52) "current session_id: 2dac2a3fdb8c39f3a9058319453dd9e9" [6]=> string(54) "write 2dac2a3fdb8c39f3a9058319453dd9e9: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.23
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0ee4ff528b0f104fcd7c5a7ce5b31bc2" [3]=> string(52) "current session_id: 0ee4ff528b0f104fcd7c5a7ce5b31bc2" [4]=> string(40) "destroy 0ee4ff528b0f104fcd7c5a7ce5b31bc2" [5]=> string(52) "current session_id: b3ff806ffe1cda56e1823fcb867b5e00" [6]=> string(54) "write b3ff806ffe1cda56e1823fcb867b5e00: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.22
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 06c5f65b32c9f4a20143a7bad36726b8" [3]=> string(52) "current session_id: 06c5f65b32c9f4a20143a7bad36726b8" [4]=> string(40) "destroy 06c5f65b32c9f4a20143a7bad36726b8" [5]=> string(52) "current session_id: 54864a4657cd9997c385b7cadaf9387a" [6]=> string(54) "write 54864a4657cd9997c385b7cadaf9387a: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.21
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 19e2be99f9a8f2c6306cf95ba43d8763" [3]=> string(52) "current session_id: 19e2be99f9a8f2c6306cf95ba43d8763" [4]=> string(40) "destroy 19e2be99f9a8f2c6306cf95ba43d8763" [5]=> string(52) "current session_id: a3a451f300f9c513b0bcc40ca3976a14" [6]=> string(54) "write a3a451f300f9c513b0bcc40ca3976a14: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.20
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ba588ebb5cf8c545a7908333d8647f8e" [3]=> string(52) "current session_id: ba588ebb5cf8c545a7908333d8647f8e" [4]=> string(40) "destroy ba588ebb5cf8c545a7908333d8647f8e" [5]=> string(52) "current session_id: c499674669a1225076dc2b5e4b52cb44" [6]=> string(54) "write c499674669a1225076dc2b5e4b52cb44: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.19
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3d630b7438fbdd6ec0afc94c8078a12a" [3]=> string(52) "current session_id: 3d630b7438fbdd6ec0afc94c8078a12a" [4]=> string(40) "destroy 3d630b7438fbdd6ec0afc94c8078a12a" [5]=> string(52) "current session_id: f306183fe108e9331826dfffe9624e91" [6]=> string(54) "write f306183fe108e9331826dfffe9624e91: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.18
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read affa6a19c692d3b16de986f123aabcb3" [3]=> string(52) "current session_id: affa6a19c692d3b16de986f123aabcb3" [4]=> string(40) "destroy affa6a19c692d3b16de986f123aabcb3" [5]=> string(52) "current session_id: 0fa554c8545a55d23536fe5ff350b611" [6]=> string(54) "write 0fa554c8545a55d23536fe5ff350b611: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.17
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 385e4c7f604c8ae18987fd234936c9ce" [3]=> string(52) "current session_id: 385e4c7f604c8ae18987fd234936c9ce" [4]=> string(40) "destroy 385e4c7f604c8ae18987fd234936c9ce" [5]=> string(52) "current session_id: 0ca2a8d3098db24a32246676fc05fedd" [6]=> string(54) "write 0ca2a8d3098db24a32246676fc05fedd: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.16
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 27c0c2c39cf44cba8b82d21363c318b0" [3]=> string(52) "current session_id: 27c0c2c39cf44cba8b82d21363c318b0" [4]=> string(40) "destroy 27c0c2c39cf44cba8b82d21363c318b0" [5]=> string(52) "current session_id: 6def0d2969e8d36c222e19423105d3d0" [6]=> string(54) "write 6def0d2969e8d36c222e19423105d3d0: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.15
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 527fce54d582766bb83f972accab39c3" [3]=> string(52) "current session_id: 527fce54d582766bb83f972accab39c3" [4]=> string(40) "destroy 527fce54d582766bb83f972accab39c3" [5]=> string(52) "current session_id: b809ba79adbdbe88675aacf99c181618" [6]=> string(54) "write b809ba79adbdbe88675aacf99c181618: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.14
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b3818dc2ca3113d7d231de2eeebab886" [3]=> string(52) "current session_id: b3818dc2ca3113d7d231de2eeebab886" [4]=> string(40) "destroy b3818dc2ca3113d7d231de2eeebab886" [5]=> string(52) "current session_id: 21c52128e367765b68d2d8da81bdebb8" [6]=> string(54) "write 21c52128e367765b68d2d8da81bdebb8: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.13
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0831c12e99d5015d13cec2c98eb8ea43" [3]=> string(52) "current session_id: 0831c12e99d5015d13cec2c98eb8ea43" [4]=> string(40) "destroy 0831c12e99d5015d13cec2c98eb8ea43" [5]=> string(52) "current session_id: 7ee5f04790754fd9edc1f572007c9e56" [6]=> string(54) "write 7ee5f04790754fd9edc1f572007c9e56: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.12
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 17e13db8dca9caf19ae9a3a8041cedd2" [3]=> string(52) "current session_id: 17e13db8dca9caf19ae9a3a8041cedd2" [4]=> string(40) "destroy 17e13db8dca9caf19ae9a3a8041cedd2" [5]=> string(52) "current session_id: d6da7401d61baee0a31161b648a29604" [6]=> string(54) "write d6da7401d61baee0a31161b648a29604: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.11
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3b2ab2ade50f8aabd35ea1bd2af68b4c" [3]=> string(52) "current session_id: 3b2ab2ade50f8aabd35ea1bd2af68b4c" [4]=> string(40) "destroy 3b2ab2ade50f8aabd35ea1bd2af68b4c" [5]=> string(52) "current session_id: aac63ed7494876b639ce44068320ee3c" [6]=> string(54) "write aac63ed7494876b639ce44068320ee3c: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.10
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a2e5712965974c9a7fee672a882bb91d" [3]=> string(52) "current session_id: a2e5712965974c9a7fee672a882bb91d" [4]=> string(40) "destroy a2e5712965974c9a7fee672a882bb91d" [5]=> string(52) "current session_id: 8fe17f170cbd2a103a04ddf37a425c4f" [6]=> string(54) "write 8fe17f170cbd2a103a04ddf37a425c4f: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.9
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b8353a5d1af19f8e36e6230796f3e0de" [3]=> string(52) "current session_id: b8353a5d1af19f8e36e6230796f3e0de" [4]=> string(40) "destroy b8353a5d1af19f8e36e6230796f3e0de" [5]=> string(52) "current session_id: 8e249112f8895a1f3c59ff9e0390856b" [6]=> string(54) "write 8e249112f8895a1f3c59ff9e0390856b: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.8
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d892cfc22e3fb678597cd36486ba5b6f" [3]=> string(52) "current session_id: d892cfc22e3fb678597cd36486ba5b6f" [4]=> string(40) "destroy d892cfc22e3fb678597cd36486ba5b6f" [5]=> string(52) "current session_id: 39c3c0d1845645a349531a9344472352" [6]=> string(54) "write 39c3c0d1845645a349531a9344472352: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.7
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 51a9e49745b9bf0205c932c9335694e0" [3]=> string(52) "current session_id: 51a9e49745b9bf0205c932c9335694e0" [4]=> string(40) "destroy 51a9e49745b9bf0205c932c9335694e0" [5]=> string(52) "current session_id: be8af1c1030b9e1533b654ec955c38b7" [6]=> string(54) "write be8af1c1030b9e1533b654ec955c38b7: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.6
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 433eb1cdadfa43f1d7b823ec9c861bd6" [3]=> string(52) "current session_id: 433eb1cdadfa43f1d7b823ec9c861bd6" [4]=> string(40) "destroy 433eb1cdadfa43f1d7b823ec9c861bd6" [5]=> string(52) "current session_id: 15fca9bf334da23e3baaa5110d31dc2b" [6]=> string(54) "write 15fca9bf334da23e3baaa5110d31dc2b: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.5
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3711e5310e78d697791b9b8d604a2f97" [3]=> string(52) "current session_id: 3711e5310e78d697791b9b8d604a2f97" [4]=> string(40) "destroy 3711e5310e78d697791b9b8d604a2f97" [5]=> string(52) "current session_id: a58a0e4adb05f1d07f6118822ed2de01" [6]=> string(54) "write a58a0e4adb05f1d07f6118822ed2de01: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.4
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f2eb10b6d475e554b0f7fc50be7bf9fb" [3]=> string(52) "current session_id: f2eb10b6d475e554b0f7fc50be7bf9fb" [4]=> string(40) "destroy f2eb10b6d475e554b0f7fc50be7bf9fb" [5]=> string(52) "current session_id: 2bac36f5a880d46183f80f295efae923" [6]=> string(54) "write 2bac36f5a880d46183f80f295efae923: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.3
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5f8b28f0c59bc7fb4dada960804cbc4b" [3]=> string(52) "current session_id: 5f8b28f0c59bc7fb4dada960804cbc4b" [4]=> string(40) "destroy 5f8b28f0c59bc7fb4dada960804cbc4b" [5]=> string(52) "current session_id: 4a176779a4b818d57cde5e71438aaa7f" [6]=> string(54) "write 4a176779a4b818d57cde5e71438aaa7f: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.2
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b03c7722c77eefd1c669dca43c678312" [3]=> string(52) "current session_id: b03c7722c77eefd1c669dca43c678312" [4]=> string(40) "destroy b03c7722c77eefd1c669dca43c678312" [5]=> string(52) "current session_id: cd2422106b6ac68b569c24cfe5b40019" [6]=> string(54) "write cd2422106b6ac68b569c24cfe5b40019: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.1
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9ce2f63d1cfc2accb18f5ff934aac057" [3]=> string(52) "current session_id: 9ce2f63d1cfc2accb18f5ff934aac057" [4]=> string(40) "destroy 9ce2f63d1cfc2accb18f5ff934aac057" [5]=> string(52) "current session_id: 8bed126e603000cb0f0afc3637a3de05" [6]=> string(54) "write 8bed126e603000cb0f0afc3637a3de05: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.6.0
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 06b7f097657525fb7f8caf754f1a4b00" [3]=> string(52) "current session_id: 06b7f097657525fb7f8caf754f1a4b00" [4]=> string(40) "destroy 06b7f097657525fb7f8caf754f1a4b00" [5]=> string(52) "current session_id: 3932226abc8f4c47530d6e374f6651f4" [6]=> string(54) "write 3932226abc8f4c47530d6e374f6651f4: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.38
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5c75ff9017b766564d0d9e9a10a4cbc8" [3]=> string(52) "current session_id: 5c75ff9017b766564d0d9e9a10a4cbc8" [4]=> string(40) "destroy 5c75ff9017b766564d0d9e9a10a4cbc8" [5]=> string(52) "current session_id: 60c9008abd06b91dd9764b7dc59e87c7" [6]=> string(54) "write 60c9008abd06b91dd9764b7dc59e87c7: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.37
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7efe01a2d24c4d48c1a8aefce308ded8" [3]=> string(52) "current session_id: 7efe01a2d24c4d48c1a8aefce308ded8" [4]=> string(40) "destroy 7efe01a2d24c4d48c1a8aefce308ded8" [5]=> string(52) "current session_id: be1b8e891ab191dc451072d723e7f31a" [6]=> string(54) "write be1b8e891ab191dc451072d723e7f31a: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.36
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ceb04fec457aa9e9f8518aaf2deeb2a6" [3]=> string(52) "current session_id: ceb04fec457aa9e9f8518aaf2deeb2a6" [4]=> string(40) "destroy ceb04fec457aa9e9f8518aaf2deeb2a6" [5]=> string(52) "current session_id: b20a4ae46fa7d970f22c712438aa1f25" [6]=> string(54) "write b20a4ae46fa7d970f22c712438aa1f25: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.35
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ca16a942bfdc06959304150b9e70edbb" [3]=> string(52) "current session_id: ca16a942bfdc06959304150b9e70edbb" [4]=> string(40) "destroy ca16a942bfdc06959304150b9e70edbb" [5]=> string(52) "current session_id: 21cd4577742c79b4ab677326dc651bef" [6]=> string(54) "write 21cd4577742c79b4ab677326dc651bef: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.34
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 425a0fafb126f7b4650dc80442863ffa" [3]=> string(52) "current session_id: 425a0fafb126f7b4650dc80442863ffa" [4]=> string(40) "destroy 425a0fafb126f7b4650dc80442863ffa" [5]=> string(52) "current session_id: f526c5e572822384af218cbb818d3843" [6]=> string(54) "write f526c5e572822384af218cbb818d3843: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.33
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 768f93414b8c4eb1d0fd793191945355" [3]=> string(52) "current session_id: 768f93414b8c4eb1d0fd793191945355" [4]=> string(40) "destroy 768f93414b8c4eb1d0fd793191945355" [5]=> string(52) "current session_id: 48c47ccaa63b8097f353cd248824ae87" [6]=> string(54) "write 48c47ccaa63b8097f353cd248824ae87: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.32
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 45f2acac00ab5643804728610f803f19" [3]=> string(52) "current session_id: 45f2acac00ab5643804728610f803f19" [4]=> string(40) "destroy 45f2acac00ab5643804728610f803f19" [5]=> string(52) "current session_id: 44f19c4a980c65a17d23e0eaf7e2d948" [6]=> string(54) "write 44f19c4a980c65a17d23e0eaf7e2d948: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.31
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b914636196bda8d1786aed9c0d90f4c6" [3]=> string(52) "current session_id: b914636196bda8d1786aed9c0d90f4c6" [4]=> string(40) "destroy b914636196bda8d1786aed9c0d90f4c6" [5]=> string(52) "current session_id: 94b92b6265b00b49b8820fe21e31b9d2" [6]=> string(54) "write 94b92b6265b00b49b8820fe21e31b9d2: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.30
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ef084b7b1067e7be9a9cde1d6b536d4c" [3]=> string(52) "current session_id: ef084b7b1067e7be9a9cde1d6b536d4c" [4]=> string(40) "destroy ef084b7b1067e7be9a9cde1d6b536d4c" [5]=> string(52) "current session_id: 8015d43766519a27e400d7c9f673a92a" [6]=> string(54) "write 8015d43766519a27e400d7c9f673a92a: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.29
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 771cf2ae2be740ab3d5b3be5a1860d5c" [3]=> string(52) "current session_id: 771cf2ae2be740ab3d5b3be5a1860d5c" [4]=> string(40) "destroy 771cf2ae2be740ab3d5b3be5a1860d5c" [5]=> string(52) "current session_id: 8b6a8b45b8a7fc7074b88ef070cd53f9" [6]=> string(54) "write 8b6a8b45b8a7fc7074b88ef070cd53f9: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.28
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 04b75344dbd8a29317820160b3c59fe7" [3]=> string(52) "current session_id: 04b75344dbd8a29317820160b3c59fe7" [4]=> string(40) "destroy 04b75344dbd8a29317820160b3c59fe7" [5]=> string(52) "current session_id: 6a5a9dee56e752b1f5ba3834654ff256" [6]=> string(54) "write 6a5a9dee56e752b1f5ba3834654ff256: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.27
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ba937911186efaa2731976f5af292075" [3]=> string(52) "current session_id: ba937911186efaa2731976f5af292075" [4]=> string(40) "destroy ba937911186efaa2731976f5af292075" [5]=> string(52) "current session_id: b0d9037e7cd687d3d861b74601b1e996" [6]=> string(54) "write b0d9037e7cd687d3d861b74601b1e996: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.26
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0a21ba15cb453fc23814939db94f6395" [3]=> string(52) "current session_id: 0a21ba15cb453fc23814939db94f6395" [4]=> string(40) "destroy 0a21ba15cb453fc23814939db94f6395" [5]=> string(52) "current session_id: 3dc5e8cc704b1547f09c2b08387e364e" [6]=> string(54) "write 3dc5e8cc704b1547f09c2b08387e364e: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.25
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 021c015655f5d3a9d96de27fbf7fd1a6" [3]=> string(52) "current session_id: 021c015655f5d3a9d96de27fbf7fd1a6" [4]=> string(40) "destroy 021c015655f5d3a9d96de27fbf7fd1a6" [5]=> string(52) "current session_id: 7fdc1bf6ede346177bbb7f0e3b9aac5e" [6]=> string(54) "write 7fdc1bf6ede346177bbb7f0e3b9aac5e: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.24
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3ad0b4f533e4b93328373d9721466bba" [3]=> string(52) "current session_id: 3ad0b4f533e4b93328373d9721466bba" [4]=> string(40) "destroy 3ad0b4f533e4b93328373d9721466bba" [5]=> string(52) "current session_id: 403c93299bd5ef3bcb02052fa9bc8c63" [6]=> string(54) "write 403c93299bd5ef3bcb02052fa9bc8c63: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.23
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a4df83b50c8dc93d74b14cb7c647fb3f" [3]=> string(52) "current session_id: a4df83b50c8dc93d74b14cb7c647fb3f" [4]=> string(40) "destroy a4df83b50c8dc93d74b14cb7c647fb3f" [5]=> string(52) "current session_id: 4c84fe7b942406f21a91bb5bf1bfdb71" [6]=> string(54) "write 4c84fe7b942406f21a91bb5bf1bfdb71: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.22
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7d91b7e53e3a97dcdd3f544f422852de" [3]=> string(52) "current session_id: 7d91b7e53e3a97dcdd3f544f422852de" [4]=> string(40) "destroy 7d91b7e53e3a97dcdd3f544f422852de" [5]=> string(52) "current session_id: eefcd06006ec928438cd9c1a7fa23241" [6]=> string(54) "write eefcd06006ec928438cd9c1a7fa23241: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.21
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f3a2f0e4c610da4cbbbe8bca1c314476" [3]=> string(52) "current session_id: f3a2f0e4c610da4cbbbe8bca1c314476" [4]=> string(40) "destroy f3a2f0e4c610da4cbbbe8bca1c314476" [5]=> string(52) "current session_id: 5b4716f81a095b3bc384d3518218d694" [6]=> string(54) "write 5b4716f81a095b3bc384d3518218d694: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.20
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read eb3253d8ab760356fdd1e6d94f09c6fd" [3]=> string(52) "current session_id: eb3253d8ab760356fdd1e6d94f09c6fd" [4]=> string(40) "destroy eb3253d8ab760356fdd1e6d94f09c6fd" [5]=> string(52) "current session_id: 21e5f7d1bc6dee790f66234d6cab5609" [6]=> string(54) "write 21e5f7d1bc6dee790f66234d6cab5609: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.19
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 914b679e2716732ed9864f0614ca1ed7" [3]=> string(52) "current session_id: 914b679e2716732ed9864f0614ca1ed7" [4]=> string(40) "destroy 914b679e2716732ed9864f0614ca1ed7" [5]=> string(52) "current session_id: 9019155d230c49ff4e4dd407522957a3" [6]=> string(54) "write 9019155d230c49ff4e4dd407522957a3: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.18
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1564e61edbb54bd67d0b879f6350c224" [3]=> string(52) "current session_id: 1564e61edbb54bd67d0b879f6350c224" [4]=> string(40) "destroy 1564e61edbb54bd67d0b879f6350c224" [5]=> string(52) "current session_id: b84984793c07a76c96a24afd07111949" [6]=> string(54) "write b84984793c07a76c96a24afd07111949: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.17
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 648bf821d53bb0fe29fc238a10738874" [3]=> string(52) "current session_id: 648bf821d53bb0fe29fc238a10738874" [4]=> string(40) "destroy 648bf821d53bb0fe29fc238a10738874" [5]=> string(52) "current session_id: 3c7ea21288d0b99873b5ad5f49b04bc9" [6]=> string(54) "write 3c7ea21288d0b99873b5ad5f49b04bc9: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.16
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2de79e0ead6cd712469bb69534fd7df6" [3]=> string(52) "current session_id: 2de79e0ead6cd712469bb69534fd7df6" [4]=> string(40) "destroy 2de79e0ead6cd712469bb69534fd7df6" [5]=> string(52) "current session_id: c1820b99306a5adbb1828b10315ffa6d" [6]=> string(54) "write c1820b99306a5adbb1828b10315ffa6d: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.15
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fe8fe56e6dcc2900c6c01039f2aadd69" [3]=> string(52) "current session_id: fe8fe56e6dcc2900c6c01039f2aadd69" [4]=> string(40) "destroy fe8fe56e6dcc2900c6c01039f2aadd69" [5]=> string(52) "current session_id: 8f865d47b52ff7277a542d1750bbeca6" [6]=> string(54) "write 8f865d47b52ff7277a542d1750bbeca6: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.14
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f41eaa60427fd0bbd5f35454aae0d8c5" [3]=> string(52) "current session_id: f41eaa60427fd0bbd5f35454aae0d8c5" [4]=> string(40) "destroy f41eaa60427fd0bbd5f35454aae0d8c5" [5]=> string(52) "current session_id: 0b1395558bd6d7166a9fd102bfb7eebe" [6]=> string(54) "write 0b1395558bd6d7166a9fd102bfb7eebe: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.13
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read aec38603d887ea70633699bdefbc4795" [3]=> string(52) "current session_id: aec38603d887ea70633699bdefbc4795" [4]=> string(40) "destroy aec38603d887ea70633699bdefbc4795" [5]=> string(52) "current session_id: 5e5bc80b16b957ffe7c9e7178ac5113a" [6]=> string(54) "write 5e5bc80b16b957ffe7c9e7178ac5113a: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.12
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f6091c838290be77b1830ac559163cd3" [3]=> string(52) "current session_id: f6091c838290be77b1830ac559163cd3" [4]=> string(40) "destroy f6091c838290be77b1830ac559163cd3" [5]=> string(52) "current session_id: e4d22ea06cb2a799564d494b9c6b148b" [6]=> string(54) "write e4d22ea06cb2a799564d494b9c6b148b: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.11
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9ade08dd33dc8fe44c75800cec4cf758" [3]=> string(52) "current session_id: 9ade08dd33dc8fe44c75800cec4cf758" [4]=> string(40) "destroy 9ade08dd33dc8fe44c75800cec4cf758" [5]=> string(52) "current session_id: 09011efe1bf12e8a7d8f9a6f7682ad96" [6]=> string(54) "write 09011efe1bf12e8a7d8f9a6f7682ad96: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.10
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f3fdb4501494acf9961ea378a61c8795" [3]=> string(52) "current session_id: f3fdb4501494acf9961ea378a61c8795" [4]=> string(40) "destroy f3fdb4501494acf9961ea378a61c8795" [5]=> string(52) "current session_id: 0e411c4574379b23f9c20cc7add2116e" [6]=> string(54) "write 0e411c4574379b23f9c20cc7add2116e: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.9
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3c54db737bcbb1d28acf8042ba9ec6b1" [3]=> string(52) "current session_id: 3c54db737bcbb1d28acf8042ba9ec6b1" [4]=> string(40) "destroy 3c54db737bcbb1d28acf8042ba9ec6b1" [5]=> string(52) "current session_id: 8bc57438f8ed9e628554aff730cb1493" [6]=> string(54) "write 8bc57438f8ed9e628554aff730cb1493: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.8
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f3556f37ba74349d8e97f3f421b6e753" [3]=> string(52) "current session_id: f3556f37ba74349d8e97f3f421b6e753" [4]=> string(40) "destroy f3556f37ba74349d8e97f3f421b6e753" [5]=> string(52) "current session_id: b362cece2bc10aae0d29053d8dfcc0e3" [6]=> string(54) "write b362cece2bc10aae0d29053d8dfcc0e3: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.7
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 87e032277510e9c3aaebd4d7860ba07b" [3]=> string(52) "current session_id: 87e032277510e9c3aaebd4d7860ba07b" [4]=> string(40) "destroy 87e032277510e9c3aaebd4d7860ba07b" [5]=> string(52) "current session_id: c15eb0c2ba5e46109f00b4fd3e47d04e" [6]=> string(54) "write c15eb0c2ba5e46109f00b4fd3e47d04e: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.6
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8790f1da84d4e029d81b7e00e82d1a28" [3]=> string(52) "current session_id: 8790f1da84d4e029d81b7e00e82d1a28" [4]=> string(40) "destroy 8790f1da84d4e029d81b7e00e82d1a28" [5]=> string(52) "current session_id: 19a49a51919f768dfebf887852dc2f6d" [6]=> string(54) "write 19a49a51919f768dfebf887852dc2f6d: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.5
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fb257a87450608d4cb757ed9918c4c10" [3]=> string(52) "current session_id: fb257a87450608d4cb757ed9918c4c10" [4]=> string(40) "destroy fb257a87450608d4cb757ed9918c4c10" [5]=> string(52) "current session_id: 8db8a3b3145a5e4e697e0ed0ec2545ad" [6]=> string(54) "write 8db8a3b3145a5e4e697e0ed0ec2545ad: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.4
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9ba046c0726d2d04b8fc00869721a9e8" [3]=> string(52) "current session_id: 9ba046c0726d2d04b8fc00869721a9e8" [4]=> string(40) "destroy 9ba046c0726d2d04b8fc00869721a9e8" [5]=> string(52) "current session_id: 73292649143b61db11cc7184bac1e0d5" [6]=> string(54) "write 73292649143b61db11cc7184bac1e0d5: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.3
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 74386b61e7b683006a6c768a0a9dbd0f" [3]=> string(52) "current session_id: 74386b61e7b683006a6c768a0a9dbd0f" [4]=> string(40) "destroy 74386b61e7b683006a6c768a0a9dbd0f" [5]=> string(52) "current session_id: 5d2acdde790363f713972a375184914e" [6]=> string(54) "write 5d2acdde790363f713972a375184914e: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.2
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 23ad6ae76518db90b22e812139b30b6f" [3]=> string(52) "current session_id: 23ad6ae76518db90b22e812139b30b6f" [4]=> string(40) "destroy 23ad6ae76518db90b22e812139b30b6f" [5]=> string(52) "current session_id: a1a361863a68c6cdfbf5ce3ef8e454c2" [6]=> string(54) "write a1a361863a68c6cdfbf5ce3ef8e454c2: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.1
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4cf3fb96d587bd4ecb6e2c8baa85acff" [3]=> string(52) "current session_id: 4cf3fb96d587bd4ecb6e2c8baa85acff" [4]=> string(40) "destroy 4cf3fb96d587bd4ecb6e2c8baa85acff" [5]=> string(52) "current session_id: 3a3786816473945e09e9d8ebf92448d6" [6]=> string(54) "write 3a3786816473945e09e9d8ebf92448d6: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.5.0
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 82f08a9adfce8fd2cc5d77988ceecf3a" [3]=> string(52) "current session_id: 82f08a9adfce8fd2cc5d77988ceecf3a" [4]=> string(40) "destroy 82f08a9adfce8fd2cc5d77988ceecf3a" [5]=> string(52) "current session_id: 15a732011243c10328c0e9280b067505" [6]=> string(54) "write 15a732011243c10328c0e9280b067505: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.45
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d8d12233b6c291af65c1bb369af9d748" [3]=> string(52) "current session_id: d8d12233b6c291af65c1bb369af9d748" [4]=> string(40) "destroy d8d12233b6c291af65c1bb369af9d748" [5]=> string(52) "current session_id: a5f87da2f0c4ba3175475e4a745ee7d8" [6]=> string(54) "write a5f87da2f0c4ba3175475e4a745ee7d8: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.44
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cc07bc981b7468565c867b2e6337e7bc" [3]=> string(52) "current session_id: cc07bc981b7468565c867b2e6337e7bc" [4]=> string(40) "destroy cc07bc981b7468565c867b2e6337e7bc" [5]=> string(52) "current session_id: 234df78b7b3cde185a9e68119e321b48" [6]=> string(54) "write 234df78b7b3cde185a9e68119e321b48: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.43
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 45f23d1d755145b2734b2487e92b366d" [3]=> string(52) "current session_id: 45f23d1d755145b2734b2487e92b366d" [4]=> string(40) "destroy 45f23d1d755145b2734b2487e92b366d" [5]=> string(52) "current session_id: 07eda0fbecb6c36bf6bad8c5e30e0ae5" [6]=> string(54) "write 07eda0fbecb6c36bf6bad8c5e30e0ae5: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.42
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5f7a60e7d3edeb111b95d812b641fa5a" [3]=> string(52) "current session_id: 5f7a60e7d3edeb111b95d812b641fa5a" [4]=> string(40) "destroy 5f7a60e7d3edeb111b95d812b641fa5a" [5]=> string(52) "current session_id: c101dd9bd804a07ecdfa143910d71df9" [6]=> string(54) "write c101dd9bd804a07ecdfa143910d71df9: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.41
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 659361648844147e90f90d34f5d75c4f" [3]=> string(52) "current session_id: 659361648844147e90f90d34f5d75c4f" [4]=> string(40) "destroy 659361648844147e90f90d34f5d75c4f" [5]=> string(52) "current session_id: f2df96a8818882ee4d657cd74de2aa26" [6]=> string(54) "write f2df96a8818882ee4d657cd74de2aa26: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.40
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4961fe3ed81fc493e3ecff4357925a37" [3]=> string(52) "current session_id: 4961fe3ed81fc493e3ecff4357925a37" [4]=> string(40) "destroy 4961fe3ed81fc493e3ecff4357925a37" [5]=> string(52) "current session_id: 9dd9fe17126ec8359deccd5270c008ac" [6]=> string(54) "write 9dd9fe17126ec8359deccd5270c008ac: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.39
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 187254a3c3dcfbd8e232b72f0f1ad7d6" [3]=> string(52) "current session_id: 187254a3c3dcfbd8e232b72f0f1ad7d6" [4]=> string(40) "destroy 187254a3c3dcfbd8e232b72f0f1ad7d6" [5]=> string(52) "current session_id: 5f9af0bd27cf0f75d80845f8c5c5420d" [6]=> string(54) "write 5f9af0bd27cf0f75d80845f8c5c5420d: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.38
array(9) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 39a394b3586ec481d2c4996c561c1c45" [3]=> string(7) "gc 1440" [4]=> string(52) "current session_id: 39a394b3586ec481d2c4996c561c1c45" [5]=> string(40) "destroy 39a394b3586ec481d2c4996c561c1c45" [6]=> string(52) "current session_id: 5439cbd0be65740be343377da8a65c65" [7]=> string(54) "write 5439cbd0be65740be343377da8a65c65: foo|s:3:"bar";" [8]=> string(5) "close" }
Output for 5.4.37
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d5479b270ab42b4a2f4a82fc1dd4e904" [3]=> string(52) "current session_id: d5479b270ab42b4a2f4a82fc1dd4e904" [4]=> string(40) "destroy d5479b270ab42b4a2f4a82fc1dd4e904" [5]=> string(52) "current session_id: 09f4c02676791fd63735c9ec64771693" [6]=> string(54) "write 09f4c02676791fd63735c9ec64771693: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.36
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ac3f3bb3ed18f74dcfbe044ef8821e19" [3]=> string(52) "current session_id: ac3f3bb3ed18f74dcfbe044ef8821e19" [4]=> string(40) "destroy ac3f3bb3ed18f74dcfbe044ef8821e19" [5]=> string(52) "current session_id: b29bc9f2364bebdd168aee815a9441cf" [6]=> string(54) "write b29bc9f2364bebdd168aee815a9441cf: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.35
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 836c4ffd84655c96e8e7d2e118357bde" [3]=> string(52) "current session_id: 836c4ffd84655c96e8e7d2e118357bde" [4]=> string(40) "destroy 836c4ffd84655c96e8e7d2e118357bde" [5]=> string(52) "current session_id: d3b4d69779aedb27a6565083167353c5" [6]=> string(54) "write d3b4d69779aedb27a6565083167353c5: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.34
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read afa78a538ba4087c4ff166d8e566261d" [3]=> string(52) "current session_id: afa78a538ba4087c4ff166d8e566261d" [4]=> string(40) "destroy afa78a538ba4087c4ff166d8e566261d" [5]=> string(52) "current session_id: a2f5933abd5f93ff11c1ee62b7a99fb7" [6]=> string(54) "write a2f5933abd5f93ff11c1ee62b7a99fb7: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.33
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 7d0a05870739738ab49fdf5317e95114" [3]=> string(52) "current session_id: 7d0a05870739738ab49fdf5317e95114" [4]=> string(40) "destroy 7d0a05870739738ab49fdf5317e95114" [5]=> string(52) "current session_id: 2f2913f4b59ef0753127f45800f8f845" [6]=> string(54) "write 2f2913f4b59ef0753127f45800f8f845: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.32
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 817eccbd4fac0fa1c3aea07a17dfc3db" [3]=> string(52) "current session_id: 817eccbd4fac0fa1c3aea07a17dfc3db" [4]=> string(40) "destroy 817eccbd4fac0fa1c3aea07a17dfc3db" [5]=> string(52) "current session_id: 371ac6d8d23861b6b0077d8a08187966" [6]=> string(54) "write 371ac6d8d23861b6b0077d8a08187966: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.31
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 4c2e292827b033d6202c4e883e9e87f1" [3]=> string(52) "current session_id: 4c2e292827b033d6202c4e883e9e87f1" [4]=> string(40) "destroy 4c2e292827b033d6202c4e883e9e87f1" [5]=> string(52) "current session_id: 541cf8a69b2dc9d6b2a87d5694aef445" [6]=> string(54) "write 541cf8a69b2dc9d6b2a87d5694aef445: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.30
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 89f4c035ae53b16aaa7ebfe4bea18422" [3]=> string(52) "current session_id: 89f4c035ae53b16aaa7ebfe4bea18422" [4]=> string(40) "destroy 89f4c035ae53b16aaa7ebfe4bea18422" [5]=> string(52) "current session_id: 7a867ec04cddcd71a82d38474beb1689" [6]=> string(54) "write 7a867ec04cddcd71a82d38474beb1689: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.29
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8d362a7a29848e0e6cb0beba48bc8e7c" [3]=> string(52) "current session_id: 8d362a7a29848e0e6cb0beba48bc8e7c" [4]=> string(40) "destroy 8d362a7a29848e0e6cb0beba48bc8e7c" [5]=> string(52) "current session_id: 7eaad81d1408b5be4e04481a706797c1" [6]=> string(54) "write 7eaad81d1408b5be4e04481a706797c1: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.28
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cb050b9bf950e7ec49d959a9c9c988ed" [3]=> string(52) "current session_id: cb050b9bf950e7ec49d959a9c9c988ed" [4]=> string(40) "destroy cb050b9bf950e7ec49d959a9c9c988ed" [5]=> string(52) "current session_id: 22797c130f5a357c7d5452bfc31989ca" [6]=> string(54) "write 22797c130f5a357c7d5452bfc31989ca: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.27
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9f9a8a310515ed44c524ca3d7cbbc6e6" [3]=> string(52) "current session_id: 9f9a8a310515ed44c524ca3d7cbbc6e6" [4]=> string(40) "destroy 9f9a8a310515ed44c524ca3d7cbbc6e6" [5]=> string(52) "current session_id: fdbf8bb7e0aa59102fc344a87122e91e" [6]=> string(54) "write fdbf8bb7e0aa59102fc344a87122e91e: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.26
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ea41ff545406b903813c5993a814fb9f" [3]=> string(52) "current session_id: ea41ff545406b903813c5993a814fb9f" [4]=> string(40) "destroy ea41ff545406b903813c5993a814fb9f" [5]=> string(52) "current session_id: c654a44f35d6f0c2d67c80ffbc6abcee" [6]=> string(54) "write c654a44f35d6f0c2d67c80ffbc6abcee: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.25
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ad792e4652b7224d77585e0236d6d25c" [3]=> string(52) "current session_id: ad792e4652b7224d77585e0236d6d25c" [4]=> string(40) "destroy ad792e4652b7224d77585e0236d6d25c" [5]=> string(52) "current session_id: e06fcc32b4adfef60527a55f5ad07210" [6]=> string(54) "write e06fcc32b4adfef60527a55f5ad07210: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.24
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f0507b4810c46dcbfbccc48388bb899e" [3]=> string(52) "current session_id: f0507b4810c46dcbfbccc48388bb899e" [4]=> string(40) "destroy f0507b4810c46dcbfbccc48388bb899e" [5]=> string(52) "current session_id: 44f2a8733cd126a6c1def0d11051561e" [6]=> string(54) "write 44f2a8733cd126a6c1def0d11051561e: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.23
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b77873d79b7ff5571986f6f8aa7d4000" [3]=> string(52) "current session_id: b77873d79b7ff5571986f6f8aa7d4000" [4]=> string(40) "destroy b77873d79b7ff5571986f6f8aa7d4000" [5]=> string(52) "current session_id: 833a2320184f6bada065b6b83a9263bc" [6]=> string(54) "write 833a2320184f6bada065b6b83a9263bc: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.22
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 419e11ed70c3a369631e4c37eb7f2bb4" [3]=> string(52) "current session_id: 419e11ed70c3a369631e4c37eb7f2bb4" [4]=> string(40) "destroy 419e11ed70c3a369631e4c37eb7f2bb4" [5]=> string(52) "current session_id: 5b9604811bbb8e49ac7e257131c935eb" [6]=> string(54) "write 5b9604811bbb8e49ac7e257131c935eb: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.21
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b65d785ef479c20e3015beeb0b47d23e" [3]=> string(52) "current session_id: b65d785ef479c20e3015beeb0b47d23e" [4]=> string(40) "destroy b65d785ef479c20e3015beeb0b47d23e" [5]=> string(52) "current session_id: 36f28ec7f5d99182cb9f6c6bd43a2274" [6]=> string(54) "write 36f28ec7f5d99182cb9f6c6bd43a2274: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.20
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b8e749c7db597a0024e7f45c76a6e650" [3]=> string(52) "current session_id: b8e749c7db597a0024e7f45c76a6e650" [4]=> string(40) "destroy b8e749c7db597a0024e7f45c76a6e650" [5]=> string(52) "current session_id: aaea5324a6a7a83974c67d16fb38cbcc" [6]=> string(54) "write aaea5324a6a7a83974c67d16fb38cbcc: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.19
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 86db6903492ad91b12fa8b25a33ae9cd" [3]=> string(52) "current session_id: 86db6903492ad91b12fa8b25a33ae9cd" [4]=> string(40) "destroy 86db6903492ad91b12fa8b25a33ae9cd" [5]=> string(52) "current session_id: 6b81fc4560805870660f2aa2f576fda9" [6]=> string(54) "write 6b81fc4560805870660f2aa2f576fda9: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.18
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e4ff985f959d014436871b6491bf55af" [3]=> string(52) "current session_id: e4ff985f959d014436871b6491bf55af" [4]=> string(40) "destroy e4ff985f959d014436871b6491bf55af" [5]=> string(52) "current session_id: 11fe528330cc9d37c6d3dd1b69cb1f09" [6]=> string(54) "write 11fe528330cc9d37c6d3dd1b69cb1f09: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.17
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ff1f020f4f25a6b643da1a174b9ac76c" [3]=> string(52) "current session_id: ff1f020f4f25a6b643da1a174b9ac76c" [4]=> string(40) "destroy ff1f020f4f25a6b643da1a174b9ac76c" [5]=> string(52) "current session_id: 8cc1eb15d346b05bf8e7f343a8f8be00" [6]=> string(54) "write 8cc1eb15d346b05bf8e7f343a8f8be00: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.16
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ec329277d1282571ac6a63de6c62b95a" [3]=> string(52) "current session_id: ec329277d1282571ac6a63de6c62b95a" [4]=> string(40) "destroy ec329277d1282571ac6a63de6c62b95a" [5]=> string(52) "current session_id: 7cb1b824b2efffeb9179b16e2fe6e29f" [6]=> string(54) "write 7cb1b824b2efffeb9179b16e2fe6e29f: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.15
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 33e150b7f3cfd133f9ca61223d66aca6" [3]=> string(52) "current session_id: 33e150b7f3cfd133f9ca61223d66aca6" [4]=> string(40) "destroy 33e150b7f3cfd133f9ca61223d66aca6" [5]=> string(52) "current session_id: 817eeb00203efae6367c7a4b7f5dc1c3" [6]=> string(54) "write 817eeb00203efae6367c7a4b7f5dc1c3: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.14
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2b2bff66109ca2ba1391bd0e47ce2abb" [3]=> string(52) "current session_id: 2b2bff66109ca2ba1391bd0e47ce2abb" [4]=> string(40) "destroy 2b2bff66109ca2ba1391bd0e47ce2abb" [5]=> string(52) "current session_id: b4ae73880592b1901ad1e1e74922f3c0" [6]=> string(54) "write b4ae73880592b1901ad1e1e74922f3c0: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.13
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9c4867458346218ec39b3f01e1ec0789" [3]=> string(52) "current session_id: 9c4867458346218ec39b3f01e1ec0789" [4]=> string(40) "destroy 9c4867458346218ec39b3f01e1ec0789" [5]=> string(52) "current session_id: a955b89ee07aee30fa0d4a789e8301c9" [6]=> string(54) "write a955b89ee07aee30fa0d4a789e8301c9: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.12
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d3836d6ea3a5d9f1456f2a39df7adae1" [3]=> string(52) "current session_id: d3836d6ea3a5d9f1456f2a39df7adae1" [4]=> string(40) "destroy d3836d6ea3a5d9f1456f2a39df7adae1" [5]=> string(52) "current session_id: eebbe40ed16834294317087653d0c6f3" [6]=> string(54) "write eebbe40ed16834294317087653d0c6f3: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.11
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 84048ddd6647d0c664640034569d0b16" [3]=> string(52) "current session_id: 84048ddd6647d0c664640034569d0b16" [4]=> string(40) "destroy 84048ddd6647d0c664640034569d0b16" [5]=> string(52) "current session_id: 7288bf316d5c4512c9a06721d4aff010" [6]=> string(54) "write 7288bf316d5c4512c9a06721d4aff010: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.10
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b3131f8119be842a963152570ac94a58" [3]=> string(52) "current session_id: b3131f8119be842a963152570ac94a58" [4]=> string(40) "destroy b3131f8119be842a963152570ac94a58" [5]=> string(52) "current session_id: dbe9b2117f7dfe0099bc03c8694f9601" [6]=> string(54) "write dbe9b2117f7dfe0099bc03c8694f9601: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.9
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 77ca8a28a4ee16ea91cfe4f612f8b2b0" [3]=> string(52) "current session_id: 77ca8a28a4ee16ea91cfe4f612f8b2b0" [4]=> string(40) "destroy 77ca8a28a4ee16ea91cfe4f612f8b2b0" [5]=> string(52) "current session_id: fb89774f6990a2f07b79273087ea03f9" [6]=> string(54) "write fb89774f6990a2f07b79273087ea03f9: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.8
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 66011c2b207dcbf15057b0ba1f6383e6" [3]=> string(52) "current session_id: 66011c2b207dcbf15057b0ba1f6383e6" [4]=> string(40) "destroy 66011c2b207dcbf15057b0ba1f6383e6" [5]=> string(52) "current session_id: 71c3a9009f3b763107f90916b7c32825" [6]=> string(54) "write 71c3a9009f3b763107f90916b7c32825: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.7
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0b43b5c0c2a50db53acf6ded5987d27d" [3]=> string(52) "current session_id: 0b43b5c0c2a50db53acf6ded5987d27d" [4]=> string(40) "destroy 0b43b5c0c2a50db53acf6ded5987d27d" [5]=> string(52) "current session_id: 9d7290ee99b8755d3009098f54bd79e9" [6]=> string(54) "write 9d7290ee99b8755d3009098f54bd79e9: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.6
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 83cf06733e62c41244c137484655b903" [3]=> string(52) "current session_id: 83cf06733e62c41244c137484655b903" [4]=> string(40) "destroy 83cf06733e62c41244c137484655b903" [5]=> string(52) "current session_id: 83e61c17f7494a6961bb492b662553d3" [6]=> string(54) "write 83e61c17f7494a6961bb492b662553d3: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.5
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ef4768b978abb83f3c4add0c51ad46ec" [3]=> string(52) "current session_id: ef4768b978abb83f3c4add0c51ad46ec" [4]=> string(40) "destroy ef4768b978abb83f3c4add0c51ad46ec" [5]=> string(52) "current session_id: 8dad8e3c479f47d53243d3ef5a474b67" [6]=> string(54) "write 8dad8e3c479f47d53243d3ef5a474b67: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.4
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8b20b423901f6cc4d2fafa1e392c6e2f" [3]=> string(52) "current session_id: 8b20b423901f6cc4d2fafa1e392c6e2f" [4]=> string(40) "destroy 8b20b423901f6cc4d2fafa1e392c6e2f" [5]=> string(52) "current session_id: 33a545f7cb5b839efd664890f74c02b7" [6]=> string(54) "write 33a545f7cb5b839efd664890f74c02b7: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.3
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c87c0c1cd9dc81400b07a44584b0b1ab" [3]=> string(52) "current session_id: c87c0c1cd9dc81400b07a44584b0b1ab" [4]=> string(40) "destroy c87c0c1cd9dc81400b07a44584b0b1ab" [5]=> string(52) "current session_id: d6280e9b7f304730339d8ea1e164d8b8" [6]=> string(54) "write d6280e9b7f304730339d8ea1e164d8b8: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.2
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f80beb408eda211ef043c0d5f997425b" [3]=> string(52) "current session_id: f80beb408eda211ef043c0d5f997425b" [4]=> string(40) "destroy f80beb408eda211ef043c0d5f997425b" [5]=> string(52) "current session_id: d6f6838aa23246b8013946474e51f7b4" [6]=> string(54) "write d6f6838aa23246b8013946474e51f7b4: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.4.1
array(9) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d54c974b7457651893b58f0319f7d012" [3]=> string(7) "gc 1440" [4]=> string(52) "current session_id: d54c974b7457651893b58f0319f7d012" [5]=> string(40) "destroy d54c974b7457651893b58f0319f7d012" [6]=> string(52) "current session_id: fc65e19bdf16ee2c84b8c53cff385592" [7]=> string(54) "write fc65e19bdf16ee2c84b8c53cff385592: foo|s:3:"bar";" [8]=> string(5) "close" }
Output for 5.4.0
array(8) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 59e8537ec257e644586af83fe8c0f6b9" [3]=> string(52) "current session_id: 59e8537ec257e644586af83fe8c0f6b9" [4]=> string(40) "destroy 59e8537ec257e644586af83fe8c0f6b9" [5]=> string(52) "current session_id: fda0283d20b9e6dd93388d65bbaa06d3" [6]=> string(54) "write fda0283d20b9e6dd93388d65bbaa06d3: foo|s:3:"bar";" [7]=> string(5) "close" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/dYsIM 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/dYsIM on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/dYsIM 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/dYsIM on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/dYsIM 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/dYsIM 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/dYsIM on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/dYsIM on line 4
Process exited with code 255.

preferences:
285.78 ms | 401 KiB | 459 Q