3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MySessionHandler implements \SessionHandlerInterface { public $messages = array(); public function open($savePath, $sessionName) { $this->messages[] = 'open ' . $sessionName; } public function close() { $this->messages[] = 'close'; } public function read($id) { $this->messages[] = 'read ' . $id; } public function write($id, $data) { $this->messages[] = 'write ' . $id . ': ' . $data; } public function destroy($id) { $this->messages[] = 'destroy ' . $id; } public function gc($maxlifetime) { $this->messages[] = 'gc ' . $maxlifetime; } } $handler = new MySessionHandler(); session_set_save_handler($handler, true); session_start(); $_SESSION['foo'] = 'bar'; $handler->messages[] = session_id(); session_regenerate_id(); $handler->messages[] = session_id(); session_write_close(); session_start(); session_destroy(); $handler->messages[] = var_export($_SESSION, true); var_dump($handler->messages);
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Return type of MySessionHandler::open($savePath, $sessionName) should either be compatible with SessionHandlerInterface::open(string $path, string $name): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/THXEc 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/THXEc 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/THXEc 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/THXEc 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/THXEc 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/THXEc on line 33 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/THXEc on line 40 Warning: session_start(): Session cannot be started after headers have already been sent in /in/THXEc on line 41 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/THXEc on line 46 Warning: session_start(): Session cannot be started after headers have already been sent in /in/THXEc on line 51 Warning: session_destroy(): Trying to destroy uninitialized session in /in/THXEc on line 52 array(3) { [0]=> string(0) "" [1]=> string(0) "" [2]=> string(27) "array ( 'foo' => 'bar', )" }
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/THXEc:41 Stack trace: #0 /in/THXEc(41): session_start() #1 {main} thrown in /in/THXEc on line 41
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: session_start(): Session callback expects true/false return value in /in/THXEc on line 41 Warning: session_start(): Session callback expects true/false return value in /in/THXEc on line 41 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/THXEc on line 41 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/THXEc on line 46 Warning: session_start(): Cannot start session when headers already sent in /in/THXEc on line 51 Warning: session_destroy(): Trying to destroy uninitialized session in /in/THXEc on line 52 array(5) { [0]=> string(14) "open PHPSESSID" [1]=> string(5) "close" [2]=> string(0) "" [3]=> string(0) "" [4]=> string(27) "array ( 'foo' => 'bar', )" }
Output for 7.1.0 - 7.1.25
Warning: session_start(): Session callback expects true/false return value in /in/THXEc on line 41 Warning: session_start(): Session callback expects true/false return value in /in/THXEc on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/THXEc on line 41
Process exited with code 255.
Output for 7.0.0 - 7.0.20
Warning: session_start(): Session callback expects true/false return value in /in/THXEc on line 41 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/THXEc on line 41 Warning: Unknown: Session callback expects true/false return value in Unknown on line 0
Process exited with code 255.
Output for 5.6.28
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ab0c40e1498c33ab48030dd2ab583f75" [2]=> string(32) "ab0c40e1498c33ab48030dd2ab583f75" [3]=> string(32) "d6f790d713465f4b3bc973987a27754c" [4]=> string(54) "write d6f790d713465f4b3bc973987a27754c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d6f790d713465f4b3bc973987a27754c" [8]=> string(40) "destroy d6f790d713465f4b3bc973987a27754c" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.25
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 62b7c181f0ddcae3b706fbf81ed8ef14" [2]=> string(32) "62b7c181f0ddcae3b706fbf81ed8ef14" [3]=> string(32) "a4643b1cb435966efe686070d639cdcf" [4]=> string(54) "write a4643b1cb435966efe686070d639cdcf: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a4643b1cb435966efe686070d639cdcf" [8]=> string(40) "destroy a4643b1cb435966efe686070d639cdcf" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.24
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 76f8121f6c7b04bdfc533ce1222ad1a7" [2]=> string(32) "76f8121f6c7b04bdfc533ce1222ad1a7" [3]=> string(32) "746ee5f662fcd79691c7b5bb040e6980" [4]=> string(54) "write 746ee5f662fcd79691c7b5bb040e6980: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 746ee5f662fcd79691c7b5bb040e6980" [8]=> string(40) "destroy 746ee5f662fcd79691c7b5bb040e6980" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.23
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read eb53a06e9e665102d36a0f36c8808781" [2]=> string(32) "eb53a06e9e665102d36a0f36c8808781" [3]=> string(32) "319ae67925c8323870539e130a1a46f2" [4]=> string(54) "write 319ae67925c8323870539e130a1a46f2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 319ae67925c8323870539e130a1a46f2" [8]=> string(40) "destroy 319ae67925c8323870539e130a1a46f2" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.22
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5ff9c3b68b2694dbad9dc6ce5031ec9a" [2]=> string(32) "5ff9c3b68b2694dbad9dc6ce5031ec9a" [3]=> string(32) "e99a862558adc829ede0d36f8d29b178" [4]=> string(54) "write e99a862558adc829ede0d36f8d29b178: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e99a862558adc829ede0d36f8d29b178" [8]=> string(40) "destroy e99a862558adc829ede0d36f8d29b178" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.21
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2c23b70b00ea5be867e5b1bcc571d049" [2]=> string(32) "2c23b70b00ea5be867e5b1bcc571d049" [3]=> string(32) "3bbec291ca2fda5ab66705778e6445fe" [4]=> string(54) "write 3bbec291ca2fda5ab66705778e6445fe: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3bbec291ca2fda5ab66705778e6445fe" [8]=> string(40) "destroy 3bbec291ca2fda5ab66705778e6445fe" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.20
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6aa300e8cee20226dfa088f0cc8203f6" [2]=> string(32) "6aa300e8cee20226dfa088f0cc8203f6" [3]=> string(32) "8d8440eb1f9888abdbe179b855f6ad6f" [4]=> string(54) "write 8d8440eb1f9888abdbe179b855f6ad6f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8d8440eb1f9888abdbe179b855f6ad6f" [8]=> string(40) "destroy 8d8440eb1f9888abdbe179b855f6ad6f" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.19
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ef89b196199861bcfb8a80411b49812a" [2]=> string(32) "ef89b196199861bcfb8a80411b49812a" [3]=> string(32) "d6939f0dae0af27ea3db7fe18f2a932d" [4]=> string(54) "write d6939f0dae0af27ea3db7fe18f2a932d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d6939f0dae0af27ea3db7fe18f2a932d" [8]=> string(40) "destroy d6939f0dae0af27ea3db7fe18f2a932d" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.18
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b869953a2ce8af6af59207316fe95d42" [2]=> string(32) "b869953a2ce8af6af59207316fe95d42" [3]=> string(32) "90464bb42efdf9e0d6ab05d1746e6eec" [4]=> string(54) "write 90464bb42efdf9e0d6ab05d1746e6eec: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 90464bb42efdf9e0d6ab05d1746e6eec" [8]=> string(40) "destroy 90464bb42efdf9e0d6ab05d1746e6eec" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.17
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7eb30c2c3e04f834379d40a2c4380aae" [2]=> string(32) "7eb30c2c3e04f834379d40a2c4380aae" [3]=> string(32) "54c1f6608f7a769d2592c4b5193b522a" [4]=> string(54) "write 54c1f6608f7a769d2592c4b5193b522a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 54c1f6608f7a769d2592c4b5193b522a" [8]=> string(40) "destroy 54c1f6608f7a769d2592c4b5193b522a" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.16
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bb179ef90b5f1b80f7d556605685f59b" [2]=> string(32) "bb179ef90b5f1b80f7d556605685f59b" [3]=> string(32) "e5df1b4beb0d81ceb1344a7edd037407" [4]=> string(54) "write e5df1b4beb0d81ceb1344a7edd037407: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e5df1b4beb0d81ceb1344a7edd037407" [8]=> string(40) "destroy e5df1b4beb0d81ceb1344a7edd037407" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.15
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b44f98e112986b27fc911fb5a3b2095b" [2]=> string(32) "b44f98e112986b27fc911fb5a3b2095b" [3]=> string(32) "e5c3b10c8951111c3f31c420937c6276" [4]=> string(54) "write e5c3b10c8951111c3f31c420937c6276: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e5c3b10c8951111c3f31c420937c6276" [8]=> string(40) "destroy e5c3b10c8951111c3f31c420937c6276" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.14
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 83fb0ca20227234b640e5b5b87b616da" [2]=> string(32) "83fb0ca20227234b640e5b5b87b616da" [3]=> string(32) "d39d18f70ff7a38ad8082a83a629ebcb" [4]=> string(54) "write d39d18f70ff7a38ad8082a83a629ebcb: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d39d18f70ff7a38ad8082a83a629ebcb" [8]=> string(40) "destroy d39d18f70ff7a38ad8082a83a629ebcb" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.13
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 246dec47abc93396e98485dc81c3bb4c" [2]=> string(32) "246dec47abc93396e98485dc81c3bb4c" [3]=> string(32) "74438a19238ce5df1eeb580a473c107e" [4]=> string(54) "write 74438a19238ce5df1eeb580a473c107e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 74438a19238ce5df1eeb580a473c107e" [8]=> string(40) "destroy 74438a19238ce5df1eeb580a473c107e" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.12
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 49386ceb14aa811a0916f5b4ee5dbf31" [2]=> string(32) "49386ceb14aa811a0916f5b4ee5dbf31" [3]=> string(32) "3415174044cbd831a524dbdb59386d8f" [4]=> string(54) "write 3415174044cbd831a524dbdb59386d8f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3415174044cbd831a524dbdb59386d8f" [8]=> string(40) "destroy 3415174044cbd831a524dbdb59386d8f" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.11
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6848dcf4dc0079e9ca63882943e9779f" [2]=> string(32) "6848dcf4dc0079e9ca63882943e9779f" [3]=> string(32) "ff99a83ddc9c4eb6385a459febe3de92" [4]=> string(54) "write ff99a83ddc9c4eb6385a459febe3de92: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ff99a83ddc9c4eb6385a459febe3de92" [8]=> string(40) "destroy ff99a83ddc9c4eb6385a459febe3de92" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.10
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3c8c5eb435c28d6356730e77166745bf" [2]=> string(32) "3c8c5eb435c28d6356730e77166745bf" [3]=> string(32) "39fa4aee4fe84020d3a99f036718e9bf" [4]=> string(54) "write 39fa4aee4fe84020d3a99f036718e9bf: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 39fa4aee4fe84020d3a99f036718e9bf" [8]=> string(40) "destroy 39fa4aee4fe84020d3a99f036718e9bf" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.9
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 56de83352d0784846fc3054b6c02d9b1" [2]=> string(32) "56de83352d0784846fc3054b6c02d9b1" [3]=> string(32) "52cbcc4b191d650a73ef1be9ccd06d73" [4]=> string(54) "write 52cbcc4b191d650a73ef1be9ccd06d73: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 52cbcc4b191d650a73ef1be9ccd06d73" [8]=> string(7) "gc 1440" [9]=> string(40) "destroy 52cbcc4b191d650a73ef1be9ccd06d73" [10]=> string(5) "close" [11]=> string(9) "array ( )" }
Output for 5.6.8
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d3e9d35acc510b5fda9ef4d8be3a1d47" [2]=> string(32) "d3e9d35acc510b5fda9ef4d8be3a1d47" [3]=> string(32) "18fda5ef6129b2a1929e9d8518a7803e" [4]=> string(54) "write 18fda5ef6129b2a1929e9d8518a7803e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 18fda5ef6129b2a1929e9d8518a7803e" [8]=> string(40) "destroy 18fda5ef6129b2a1929e9d8518a7803e" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.7
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 48acdc52364c08bf47f7d8548f619cf2" [2]=> string(32) "48acdc52364c08bf47f7d8548f619cf2" [3]=> string(32) "e673e0c6725be8d0864eda10cf0eda80" [4]=> string(54) "write e673e0c6725be8d0864eda10cf0eda80: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e673e0c6725be8d0864eda10cf0eda80" [8]=> string(40) "destroy e673e0c6725be8d0864eda10cf0eda80" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.6
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read fd96e8a3d2ffc5ce3f1027237103772d" [2]=> string(32) "fd96e8a3d2ffc5ce3f1027237103772d" [3]=> string(32) "8616f56a8221e98070da736f9c77d426" [4]=> string(54) "write 8616f56a8221e98070da736f9c77d426: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8616f56a8221e98070da736f9c77d426" [8]=> string(40) "destroy 8616f56a8221e98070da736f9c77d426" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.5
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e9bc8829d1657c3f6869bf578b81d240" [2]=> string(32) "e9bc8829d1657c3f6869bf578b81d240" [3]=> string(32) "7961056afe5c2ab4b373a9685830e860" [4]=> string(54) "write 7961056afe5c2ab4b373a9685830e860: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7961056afe5c2ab4b373a9685830e860" [8]=> string(40) "destroy 7961056afe5c2ab4b373a9685830e860" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.4
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4c65ee3189429d1b8628396e9d8a7b3f" [2]=> string(32) "4c65ee3189429d1b8628396e9d8a7b3f" [3]=> string(32) "8436cb3b035059e77daaf68f3532502d" [4]=> string(54) "write 8436cb3b035059e77daaf68f3532502d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8436cb3b035059e77daaf68f3532502d" [8]=> string(40) "destroy 8436cb3b035059e77daaf68f3532502d" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.3
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b5b4cc5d28cc47a1324ccde5ce40f931" [2]=> string(32) "b5b4cc5d28cc47a1324ccde5ce40f931" [3]=> string(32) "6dbc3da8c681ae85c3fb98d2c1a8c2cc" [4]=> string(54) "write 6dbc3da8c681ae85c3fb98d2c1a8c2cc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6dbc3da8c681ae85c3fb98d2c1a8c2cc" [8]=> string(40) "destroy 6dbc3da8c681ae85c3fb98d2c1a8c2cc" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.2
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read da54efa2399b11f2bd01acabaab126a4" [2]=> string(32) "da54efa2399b11f2bd01acabaab126a4" [3]=> string(32) "edf030c06df426b4e6e81ef62f5a133b" [4]=> string(54) "write edf030c06df426b4e6e81ef62f5a133b: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read edf030c06df426b4e6e81ef62f5a133b" [8]=> string(40) "destroy edf030c06df426b4e6e81ef62f5a133b" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.1
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9e6af6dd112a5a8859a64de4816b4ae3" [2]=> string(32) "9e6af6dd112a5a8859a64de4816b4ae3" [3]=> string(32) "a53e5c47122bd14b9612b53f22a6f659" [4]=> string(54) "write a53e5c47122bd14b9612b53f22a6f659: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a53e5c47122bd14b9612b53f22a6f659" [8]=> string(40) "destroy a53e5c47122bd14b9612b53f22a6f659" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.6.0
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6a96bcbc7601a769b4771bc5cf91c9c0" [2]=> string(32) "6a96bcbc7601a769b4771bc5cf91c9c0" [3]=> string(32) "5947b5d2ca1f74f444ca75309b8f7b54" [4]=> string(54) "write 5947b5d2ca1f74f444ca75309b8f7b54: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5947b5d2ca1f74f444ca75309b8f7b54" [8]=> string(40) "destroy 5947b5d2ca1f74f444ca75309b8f7b54" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.38
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8990dcd998226e7b386fdc413491d69b" [2]=> string(32) "8990dcd998226e7b386fdc413491d69b" [3]=> string(32) "74eee40355c7f5583e6a20e3be961caa" [4]=> string(54) "write 74eee40355c7f5583e6a20e3be961caa: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 74eee40355c7f5583e6a20e3be961caa" [8]=> string(40) "destroy 74eee40355c7f5583e6a20e3be961caa" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.37
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c3413ea9308f90d189a491c8b1222016" [2]=> string(32) "c3413ea9308f90d189a491c8b1222016" [3]=> string(32) "03070815e974ac5549f55ed3842e3d46" [4]=> string(54) "write 03070815e974ac5549f55ed3842e3d46: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 03070815e974ac5549f55ed3842e3d46" [8]=> string(40) "destroy 03070815e974ac5549f55ed3842e3d46" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.36
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9835376fda073f03ed00111b881efb7d" [2]=> string(32) "9835376fda073f03ed00111b881efb7d" [3]=> string(32) "730a4a078fa0d2e2453437fa5b2b80f4" [4]=> string(54) "write 730a4a078fa0d2e2453437fa5b2b80f4: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 730a4a078fa0d2e2453437fa5b2b80f4" [8]=> string(40) "destroy 730a4a078fa0d2e2453437fa5b2b80f4" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.35
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f3c7e627115eeb3e119e0a2c30cbbad7" [2]=> string(32) "f3c7e627115eeb3e119e0a2c30cbbad7" [3]=> string(32) "60d96c1d1ab789ae15bac07b181ac988" [4]=> string(54) "write 60d96c1d1ab789ae15bac07b181ac988: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 60d96c1d1ab789ae15bac07b181ac988" [8]=> string(40) "destroy 60d96c1d1ab789ae15bac07b181ac988" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.34
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 84a7211b770f80067031377495e714b4" [2]=> string(32) "84a7211b770f80067031377495e714b4" [3]=> string(32) "54c1f2eccc4571f797ebafa8841f69c7" [4]=> string(54) "write 54c1f2eccc4571f797ebafa8841f69c7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 54c1f2eccc4571f797ebafa8841f69c7" [8]=> string(40) "destroy 54c1f2eccc4571f797ebafa8841f69c7" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.33
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cfcbaea896ed19dd8fd00bd3fe4b26e4" [2]=> string(32) "cfcbaea896ed19dd8fd00bd3fe4b26e4" [3]=> string(32) "8ecb3a0dc0c0344b5e57650694aef8ad" [4]=> string(54) "write 8ecb3a0dc0c0344b5e57650694aef8ad: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8ecb3a0dc0c0344b5e57650694aef8ad" [8]=> string(40) "destroy 8ecb3a0dc0c0344b5e57650694aef8ad" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.32
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5b1665cff6357aca32e431a949ccb072" [2]=> string(32) "5b1665cff6357aca32e431a949ccb072" [3]=> string(32) "24dbeae4e7eed5dfb1d4e9bce4a4b1d6" [4]=> string(54) "write 24dbeae4e7eed5dfb1d4e9bce4a4b1d6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 24dbeae4e7eed5dfb1d4e9bce4a4b1d6" [8]=> string(40) "destroy 24dbeae4e7eed5dfb1d4e9bce4a4b1d6" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.31
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9224e83eba1f8d208745b77242e08ff5" [2]=> string(32) "9224e83eba1f8d208745b77242e08ff5" [3]=> string(32) "39eeef2061bad9a7e32ba0507f7c2daa" [4]=> string(54) "write 39eeef2061bad9a7e32ba0507f7c2daa: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 39eeef2061bad9a7e32ba0507f7c2daa" [8]=> string(40) "destroy 39eeef2061bad9a7e32ba0507f7c2daa" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.30
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4eea1c38fe00fd36417d79d5f6af24b2" [2]=> string(32) "4eea1c38fe00fd36417d79d5f6af24b2" [3]=> string(32) "65779a5759a0e95b247904cd285ec8fc" [4]=> string(54) "write 65779a5759a0e95b247904cd285ec8fc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 65779a5759a0e95b247904cd285ec8fc" [8]=> string(40) "destroy 65779a5759a0e95b247904cd285ec8fc" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.29
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c0a6da4a8022827ec540e8c253e9941d" [2]=> string(32) "c0a6da4a8022827ec540e8c253e9941d" [3]=> string(32) "dad9bdfa0989445f6db3b8dc8c103ac5" [4]=> string(54) "write dad9bdfa0989445f6db3b8dc8c103ac5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read dad9bdfa0989445f6db3b8dc8c103ac5" [8]=> string(40) "destroy dad9bdfa0989445f6db3b8dc8c103ac5" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.28
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 29a02824af0e8f815165af8493c92d78" [2]=> string(32) "29a02824af0e8f815165af8493c92d78" [3]=> string(32) "14f52839d35d3f01e1190dab2c08e327" [4]=> string(54) "write 14f52839d35d3f01e1190dab2c08e327: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 14f52839d35d3f01e1190dab2c08e327" [8]=> string(40) "destroy 14f52839d35d3f01e1190dab2c08e327" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.27
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5b0bcfaf8cbcf351c44724a73e7ac3c1" [2]=> string(32) "5b0bcfaf8cbcf351c44724a73e7ac3c1" [3]=> string(32) "cfb434506092775ac7c63b5e107544ae" [4]=> string(54) "write cfb434506092775ac7c63b5e107544ae: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cfb434506092775ac7c63b5e107544ae" [8]=> string(40) "destroy cfb434506092775ac7c63b5e107544ae" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.26
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3049a7619c7e14aaa28d5c3274a03cd9" [2]=> string(32) "3049a7619c7e14aaa28d5c3274a03cd9" [3]=> string(32) "f2d8df3e95643b08707728db839de97c" [4]=> string(54) "write f2d8df3e95643b08707728db839de97c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f2d8df3e95643b08707728db839de97c" [8]=> string(40) "destroy f2d8df3e95643b08707728db839de97c" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.25
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dc085808e87aec811ff1d645485b9ab8" [2]=> string(32) "dc085808e87aec811ff1d645485b9ab8" [3]=> string(32) "e63ccd1862499a3efb604bfc7f570391" [4]=> string(54) "write e63ccd1862499a3efb604bfc7f570391: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e63ccd1862499a3efb604bfc7f570391" [8]=> string(40) "destroy e63ccd1862499a3efb604bfc7f570391" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.24
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 7f1f9d5d376b9c018b406d8a8cec8036" [2]=> string(32) "7f1f9d5d376b9c018b406d8a8cec8036" [3]=> string(32) "553e989893ad96a7b2a0ea0a9738ef63" [4]=> string(54) "write 553e989893ad96a7b2a0ea0a9738ef63: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 553e989893ad96a7b2a0ea0a9738ef63" [8]=> string(40) "destroy 553e989893ad96a7b2a0ea0a9738ef63" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.23
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d10e12d9f51a61c9970b8a79574eb9ab" [2]=> string(32) "d10e12d9f51a61c9970b8a79574eb9ab" [3]=> string(32) "a219319ebe10db1e853a6b170f72ceef" [4]=> string(54) "write a219319ebe10db1e853a6b170f72ceef: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a219319ebe10db1e853a6b170f72ceef" [8]=> string(40) "destroy a219319ebe10db1e853a6b170f72ceef" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.22
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 448b5a6bf2203082c2bee924ee4bd38e" [2]=> string(32) "448b5a6bf2203082c2bee924ee4bd38e" [3]=> string(32) "9fc54bae4365ca7c5252d6b1711c9eab" [4]=> string(54) "write 9fc54bae4365ca7c5252d6b1711c9eab: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9fc54bae4365ca7c5252d6b1711c9eab" [8]=> string(40) "destroy 9fc54bae4365ca7c5252d6b1711c9eab" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.21
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e7fbb22f2c50f5195718cecfae26b550" [2]=> string(32) "e7fbb22f2c50f5195718cecfae26b550" [3]=> string(32) "bcc7464c1d0d86945dbfeb523d0ea183" [4]=> string(54) "write bcc7464c1d0d86945dbfeb523d0ea183: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bcc7464c1d0d86945dbfeb523d0ea183" [8]=> string(40) "destroy bcc7464c1d0d86945dbfeb523d0ea183" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.20
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f453a05e1e5d58b18514a93cb342822d" [2]=> string(32) "f453a05e1e5d58b18514a93cb342822d" [3]=> string(32) "464d5fd3e4ba977a454696695586fa70" [4]=> string(54) "write 464d5fd3e4ba977a454696695586fa70: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 464d5fd3e4ba977a454696695586fa70" [8]=> string(40) "destroy 464d5fd3e4ba977a454696695586fa70" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.19
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 012e83aac2d06848e9c17540ab2e8fb2" [2]=> string(32) "012e83aac2d06848e9c17540ab2e8fb2" [3]=> string(32) "b066de7ade15467882a5d97b54ca1825" [4]=> string(54) "write b066de7ade15467882a5d97b54ca1825: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b066de7ade15467882a5d97b54ca1825" [8]=> string(40) "destroy b066de7ade15467882a5d97b54ca1825" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.18
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 53965c07af522f5e57443cfbe50878a5" [2]=> string(32) "53965c07af522f5e57443cfbe50878a5" [3]=> string(32) "f68772c191597229b3303a96998e95f2" [4]=> string(54) "write f68772c191597229b3303a96998e95f2: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f68772c191597229b3303a96998e95f2" [8]=> string(40) "destroy f68772c191597229b3303a96998e95f2" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.16
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9e915b597fd6ce16dc2c247280f04a0a" [2]=> string(32) "9e915b597fd6ce16dc2c247280f04a0a" [3]=> string(32) "27ab52a75dd99a3cceb07d62aa9b8a28" [4]=> string(54) "write 27ab52a75dd99a3cceb07d62aa9b8a28: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 27ab52a75dd99a3cceb07d62aa9b8a28" [8]=> string(40) "destroy 27ab52a75dd99a3cceb07d62aa9b8a28" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.15
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d3cb7cb042d615d6db5cfb449715c0fd" [2]=> string(32) "d3cb7cb042d615d6db5cfb449715c0fd" [3]=> string(32) "64854222508f378f1fca075268bd9a8e" [4]=> string(54) "write 64854222508f378f1fca075268bd9a8e: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 64854222508f378f1fca075268bd9a8e" [8]=> string(40) "destroy 64854222508f378f1fca075268bd9a8e" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.14
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6f87f8e565b1b290853a4fee502421e2" [2]=> string(32) "6f87f8e565b1b290853a4fee502421e2" [3]=> string(32) "fdcb1d138cbcee62392bd7790076a2e6" [4]=> string(54) "write fdcb1d138cbcee62392bd7790076a2e6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read fdcb1d138cbcee62392bd7790076a2e6" [8]=> string(40) "destroy fdcb1d138cbcee62392bd7790076a2e6" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.13
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 622e8a5a690dcf6921667f803260b658" [2]=> string(32) "622e8a5a690dcf6921667f803260b658" [3]=> string(32) "1d83f24d5c450d5b27bcf94891382a91" [4]=> string(54) "write 1d83f24d5c450d5b27bcf94891382a91: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 1d83f24d5c450d5b27bcf94891382a91" [8]=> string(40) "destroy 1d83f24d5c450d5b27bcf94891382a91" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.12
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read e2ec95ee45538ac7f15bacee8aae319f" [2]=> string(32) "e2ec95ee45538ac7f15bacee8aae319f" [3]=> string(32) "c83dcee0d2a51062b7c45cbdc63e53c3" [4]=> string(54) "write c83dcee0d2a51062b7c45cbdc63e53c3: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c83dcee0d2a51062b7c45cbdc63e53c3" [8]=> string(40) "destroy c83dcee0d2a51062b7c45cbdc63e53c3" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.11
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5fe5107def8ba93e2fc1ef28e0bdf661" [2]=> string(32) "5fe5107def8ba93e2fc1ef28e0bdf661" [3]=> string(32) "7fb1009ea9bcca645a372a32df565d77" [4]=> string(54) "write 7fb1009ea9bcca645a372a32df565d77: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7fb1009ea9bcca645a372a32df565d77" [8]=> string(40) "destroy 7fb1009ea9bcca645a372a32df565d77" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.10
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9b93aa9ed0be73957a35a6c665df1765" [2]=> string(32) "9b93aa9ed0be73957a35a6c665df1765" [3]=> string(32) "21aa8388444d707631be3c61eb07ee04" [4]=> string(54) "write 21aa8388444d707631be3c61eb07ee04: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 21aa8388444d707631be3c61eb07ee04" [8]=> string(40) "destroy 21aa8388444d707631be3c61eb07ee04" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.9
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 563c62ea169063386b053afa2c866d2b" [2]=> string(32) "563c62ea169063386b053afa2c866d2b" [3]=> string(32) "4368329c4aeaa60684e718d11e842e46" [4]=> string(54) "write 4368329c4aeaa60684e718d11e842e46: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4368329c4aeaa60684e718d11e842e46" [8]=> string(40) "destroy 4368329c4aeaa60684e718d11e842e46" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.8
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 18cd3532e580a0313b244b60dce395dc" [2]=> string(32) "18cd3532e580a0313b244b60dce395dc" [3]=> string(32) "d2844f524282403aefcbe6fbdedddd49" [4]=> string(54) "write d2844f524282403aefcbe6fbdedddd49: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d2844f524282403aefcbe6fbdedddd49" [8]=> string(40) "destroy d2844f524282403aefcbe6fbdedddd49" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.7
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 2ce7d4137e3140e0c2b276a7cbe945e2" [2]=> string(32) "2ce7d4137e3140e0c2b276a7cbe945e2" [3]=> string(32) "278b739b4a0ab87e05c4a8c57b0b8a28" [4]=> string(54) "write 278b739b4a0ab87e05c4a8c57b0b8a28: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 278b739b4a0ab87e05c4a8c57b0b8a28" [8]=> string(40) "destroy 278b739b4a0ab87e05c4a8c57b0b8a28" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.6
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 128a697c7b5b4d5342b9c1c7b49ff0da" [2]=> string(32) "128a697c7b5b4d5342b9c1c7b49ff0da" [3]=> string(32) "cc41072f3d1b28e05f02559c152c5218" [4]=> string(54) "write cc41072f3d1b28e05f02559c152c5218: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read cc41072f3d1b28e05f02559c152c5218" [8]=> string(40) "destroy cc41072f3d1b28e05f02559c152c5218" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.5
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1bea39440758cafabb8f0c429e3a13a5" [2]=> string(32) "1bea39440758cafabb8f0c429e3a13a5" [3]=> string(32) "bcc723da31a500b8b89cd0b9d6c0d0bf" [4]=> string(54) "write bcc723da31a500b8b89cd0b9d6c0d0bf: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bcc723da31a500b8b89cd0b9d6c0d0bf" [8]=> string(40) "destroy bcc723da31a500b8b89cd0b9d6c0d0bf" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.4
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1a573ab5067d435b7df9118469367dff" [2]=> string(32) "1a573ab5067d435b7df9118469367dff" [3]=> string(32) "9ad55d6ea2339c74143a93223001c10a" [4]=> string(54) "write 9ad55d6ea2339c74143a93223001c10a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 9ad55d6ea2339c74143a93223001c10a" [8]=> string(40) "destroy 9ad55d6ea2339c74143a93223001c10a" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.3
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read ed27cf2e16f23e84351928af42d4ec96" [2]=> string(32) "ed27cf2e16f23e84351928af42d4ec96" [3]=> string(32) "4e932a4e43c7083d56e27a8e0c00b7fd" [4]=> string(54) "write 4e932a4e43c7083d56e27a8e0c00b7fd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4e932a4e43c7083d56e27a8e0c00b7fd" [8]=> string(40) "destroy 4e932a4e43c7083d56e27a8e0c00b7fd" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.2
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4ea87a320ed62cf99b17ecb96ac6c4f7" [2]=> string(32) "4ea87a320ed62cf99b17ecb96ac6c4f7" [3]=> string(32) "d849b28a48e63819c6e2d32c681430a9" [4]=> string(54) "write d849b28a48e63819c6e2d32c681430a9: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d849b28a48e63819c6e2d32c681430a9" [8]=> string(40) "destroy d849b28a48e63819c6e2d32c681430a9" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.1
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bc7a7f0822d2173e5f9d9043aeba679e" [2]=> string(32) "bc7a7f0822d2173e5f9d9043aeba679e" [3]=> string(32) "b983d9385a3ecd9a64d0bb226e5d0e89" [4]=> string(54) "write b983d9385a3ecd9a64d0bb226e5d0e89: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b983d9385a3ecd9a64d0bb226e5d0e89" [8]=> string(40) "destroy b983d9385a3ecd9a64d0bb226e5d0e89" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.5.0
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3f2ecefad92c3fdf4e1e21434b9791f5" [2]=> string(32) "3f2ecefad92c3fdf4e1e21434b9791f5" [3]=> string(32) "b4d925f9f2bd248413509071c8000db1" [4]=> string(54) "write b4d925f9f2bd248413509071c8000db1: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b4d925f9f2bd248413509071c8000db1" [8]=> string(40) "destroy b4d925f9f2bd248413509071c8000db1" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.45
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8f8c0436a0306242347560d3e8fb31f8" [2]=> string(32) "8f8c0436a0306242347560d3e8fb31f8" [3]=> string(32) "391ae7ef5e12e2d33aad875ee3d996ee" [4]=> string(54) "write 391ae7ef5e12e2d33aad875ee3d996ee: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 391ae7ef5e12e2d33aad875ee3d996ee" [8]=> string(40) "destroy 391ae7ef5e12e2d33aad875ee3d996ee" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.44
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 87804e4c2a2688f5ea291e909ad6920e" [2]=> string(32) "87804e4c2a2688f5ea291e909ad6920e" [3]=> string(32) "8109585cb6a60de90c18af41f3cf73dc" [4]=> string(54) "write 8109585cb6a60de90c18af41f3cf73dc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 8109585cb6a60de90c18af41f3cf73dc" [8]=> string(40) "destroy 8109585cb6a60de90c18af41f3cf73dc" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.43
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 175366c73b6ea4893144de3c28594246" [2]=> string(32) "175366c73b6ea4893144de3c28594246" [3]=> string(32) "619b6545757e21c7f52d943c07e101a5" [4]=> string(54) "write 619b6545757e21c7f52d943c07e101a5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 619b6545757e21c7f52d943c07e101a5" [8]=> string(40) "destroy 619b6545757e21c7f52d943c07e101a5" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.42
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 155d8509082a680fa754e998a1affdd0" [2]=> string(32) "155d8509082a680fa754e998a1affdd0" [3]=> string(32) "a61534fa15dd512d006259a53c83bd80" [4]=> string(54) "write a61534fa15dd512d006259a53c83bd80: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read a61534fa15dd512d006259a53c83bd80" [8]=> string(40) "destroy a61534fa15dd512d006259a53c83bd80" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.41
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b901f5a0f34962ddb07d5f408a96454f" [2]=> string(32) "b901f5a0f34962ddb07d5f408a96454f" [3]=> string(32) "b37a64323c141addc63d9b867e5fed0a" [4]=> string(54) "write b37a64323c141addc63d9b867e5fed0a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b37a64323c141addc63d9b867e5fed0a" [8]=> string(40) "destroy b37a64323c141addc63d9b867e5fed0a" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.40
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cb0c4ea239344d7111c3a82ffe1ea87f" [2]=> string(32) "cb0c4ea239344d7111c3a82ffe1ea87f" [3]=> string(32) "3efd19cd573b9608edc335b753ce0761" [4]=> string(54) "write 3efd19cd573b9608edc335b753ce0761: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 3efd19cd573b9608edc335b753ce0761" [8]=> string(40) "destroy 3efd19cd573b9608edc335b753ce0761" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.39
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b71b473225ffa70e395fc35d886c7ee5" [2]=> string(32) "b71b473225ffa70e395fc35d886c7ee5" [3]=> string(32) "f6f003f57a8f0e4f6a495a73034ae4ee" [4]=> string(54) "write f6f003f57a8f0e4f6a495a73034ae4ee: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f6f003f57a8f0e4f6a495a73034ae4ee" [8]=> string(40) "destroy f6f003f57a8f0e4f6a495a73034ae4ee" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.38
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c2162ef5c74097f3720f53e4cd0e4eec" [2]=> string(32) "c2162ef5c74097f3720f53e4cd0e4eec" [3]=> string(32) "03d41fd7ea15fcd23b103dcb4d4d5e29" [4]=> string(54) "write 03d41fd7ea15fcd23b103dcb4d4d5e29: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 03d41fd7ea15fcd23b103dcb4d4d5e29" [8]=> string(40) "destroy 03d41fd7ea15fcd23b103dcb4d4d5e29" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.37
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read c02d0236bff46c1ca21594c426d2d7ec" [2]=> string(32) "c02d0236bff46c1ca21594c426d2d7ec" [3]=> string(32) "f84a3220517d1ec9c050ca458c074067" [4]=> string(54) "write f84a3220517d1ec9c050ca458c074067: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f84a3220517d1ec9c050ca458c074067" [8]=> string(7) "gc 1440" [9]=> string(40) "destroy f84a3220517d1ec9c050ca458c074067" [10]=> string(5) "close" [11]=> string(9) "array ( )" }
Output for 5.4.36
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read f51e3cd6717f2269ded3756ddb368829" [2]=> string(32) "f51e3cd6717f2269ded3756ddb368829" [3]=> string(32) "6bc7ae0396d247a260ea93b2c4034588" [4]=> string(54) "write 6bc7ae0396d247a260ea93b2c4034588: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 6bc7ae0396d247a260ea93b2c4034588" [8]=> string(40) "destroy 6bc7ae0396d247a260ea93b2c4034588" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.35
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5fc8684ab54941319700574c4d38f679" [2]=> string(32) "5fc8684ab54941319700574c4d38f679" [3]=> string(32) "128b9bda7516d0a4d5d5056c9571e742" [4]=> string(54) "write 128b9bda7516d0a4d5d5056c9571e742: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 128b9bda7516d0a4d5d5056c9571e742" [8]=> string(40) "destroy 128b9bda7516d0a4d5d5056c9571e742" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.34
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1f9c2a0e58d616e80ee40127878484f0" [2]=> string(32) "1f9c2a0e58d616e80ee40127878484f0" [3]=> string(32) "4def8ee8630d80744e9258347e79e35f" [4]=> string(54) "write 4def8ee8630d80744e9258347e79e35f: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 4def8ee8630d80744e9258347e79e35f" [8]=> string(40) "destroy 4def8ee8630d80744e9258347e79e35f" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.32
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read dd1d29a7541c5ca00665e5c035f693c5" [2]=> string(32) "dd1d29a7541c5ca00665e5c035f693c5" [3]=> string(32) "64293065fdc5eb36c756e9504e85368c" [4]=> string(54) "write 64293065fdc5eb36c756e9504e85368c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 64293065fdc5eb36c756e9504e85368c" [8]=> string(40) "destroy 64293065fdc5eb36c756e9504e85368c" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.31
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 147481ae20231b91e2234a906fdf5230" [2]=> string(32) "147481ae20231b91e2234a906fdf5230" [3]=> string(32) "45de1d1b395bf2bed62473d4d9cad4bd" [4]=> string(54) "write 45de1d1b395bf2bed62473d4d9cad4bd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 45de1d1b395bf2bed62473d4d9cad4bd" [8]=> string(40) "destroy 45de1d1b395bf2bed62473d4d9cad4bd" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.30
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a5b284f514917ff21476baf8051b6181" [2]=> string(32) "a5b284f514917ff21476baf8051b6181" [3]=> string(32) "afaa68e87087eca19a1770cd5e428e6a" [4]=> string(54) "write afaa68e87087eca19a1770cd5e428e6a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read afaa68e87087eca19a1770cd5e428e6a" [8]=> string(40) "destroy afaa68e87087eca19a1770cd5e428e6a" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.29
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 575ce73c7cc06d2f4f9cd90e7121ec68" [2]=> string(32) "575ce73c7cc06d2f4f9cd90e7121ec68" [3]=> string(32) "5a313deb37a9bfefe53c4af22a92e45a" [4]=> string(54) "write 5a313deb37a9bfefe53c4af22a92e45a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5a313deb37a9bfefe53c4af22a92e45a" [8]=> string(40) "destroy 5a313deb37a9bfefe53c4af22a92e45a" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.28
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 420e58a676bf2aa7c9347cac335a7ba9" [2]=> string(32) "420e58a676bf2aa7c9347cac335a7ba9" [3]=> string(32) "e38018156a11d7a191ef84b1dfa2e9f5" [4]=> string(54) "write e38018156a11d7a191ef84b1dfa2e9f5: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e38018156a11d7a191ef84b1dfa2e9f5" [8]=> string(40) "destroy e38018156a11d7a191ef84b1dfa2e9f5" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.27
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 5527616ddaae9280e785090ba0559a23" [2]=> string(32) "5527616ddaae9280e785090ba0559a23" [3]=> string(32) "f71c51d41224feede629b7aee02d9de7" [4]=> string(54) "write f71c51d41224feede629b7aee02d9de7: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f71c51d41224feede629b7aee02d9de7" [8]=> string(40) "destroy f71c51d41224feede629b7aee02d9de7" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.26
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 734c9f56c903143fa6e4350f2eaa08d4" [2]=> string(32) "734c9f56c903143fa6e4350f2eaa08d4" [3]=> string(32) "2b14603f8c6d1c9ab7b439efa64df0d6" [4]=> string(54) "write 2b14603f8c6d1c9ab7b439efa64df0d6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 2b14603f8c6d1c9ab7b439efa64df0d6" [8]=> string(40) "destroy 2b14603f8c6d1c9ab7b439efa64df0d6" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.25
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6ba8050bf33a7d3262fa12a48eca127d" [2]=> string(32) "6ba8050bf33a7d3262fa12a48eca127d" [3]=> string(32) "779491d874c301dcff2a1e71b2aa5e68" [4]=> string(54) "write 779491d874c301dcff2a1e71b2aa5e68: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 779491d874c301dcff2a1e71b2aa5e68" [8]=> string(40) "destroy 779491d874c301dcff2a1e71b2aa5e68" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.24
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d4d48f7f279fbe415ea88739353112bf" [2]=> string(32) "d4d48f7f279fbe415ea88739353112bf" [3]=> string(32) "c7c170d1db41052487847d06b0d439bb" [4]=> string(54) "write c7c170d1db41052487847d06b0d439bb: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read c7c170d1db41052487847d06b0d439bb" [8]=> string(40) "destroy c7c170d1db41052487847d06b0d439bb" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.23
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 88b88912f08eb64bd97cd4265e5bce8a" [2]=> string(32) "88b88912f08eb64bd97cd4265e5bce8a" [3]=> string(32) "b7c7fb1164364c02468a482047a5ba04" [4]=> string(54) "write b7c7fb1164364c02468a482047a5ba04: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b7c7fb1164364c02468a482047a5ba04" [8]=> string(40) "destroy b7c7fb1164364c02468a482047a5ba04" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.22
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a63e45185b72c581093283e0e66c1266" [2]=> string(32) "a63e45185b72c581093283e0e66c1266" [3]=> string(32) "e3edf8fe00f34d67e688d7a525276d3a" [4]=> string(54) "write e3edf8fe00f34d67e688d7a525276d3a: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e3edf8fe00f34d67e688d7a525276d3a" [8]=> string(40) "destroy e3edf8fe00f34d67e688d7a525276d3a" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.21
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 21752c4c5253c48cd69c05558b382845" [2]=> string(32) "21752c4c5253c48cd69c05558b382845" [3]=> string(32) "54c3ccbfd0bce1cf8e776fbfb739bafc" [4]=> string(54) "write 54c3ccbfd0bce1cf8e776fbfb739bafc: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 54c3ccbfd0bce1cf8e776fbfb739bafc" [8]=> string(40) "destroy 54c3ccbfd0bce1cf8e776fbfb739bafc" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.20
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 80907de60e5d948a2036ff4626a283ea" [2]=> string(32) "80907de60e5d948a2036ff4626a283ea" [3]=> string(32) "d7dd0297f13e35ccae09e8b77bace4c6" [4]=> string(54) "write d7dd0297f13e35ccae09e8b77bace4c6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read d7dd0297f13e35ccae09e8b77bace4c6" [8]=> string(40) "destroy d7dd0297f13e35ccae09e8b77bace4c6" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.19
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 021011743fa341c904257a38a3e29311" [2]=> string(32) "021011743fa341c904257a38a3e29311" [3]=> string(32) "7c7f8293d1abfea853b0219c73fa0463" [4]=> string(54) "write 7c7f8293d1abfea853b0219c73fa0463: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 7c7f8293d1abfea853b0219c73fa0463" [8]=> string(40) "destroy 7c7f8293d1abfea853b0219c73fa0463" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.18
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 325bcf78cfef4ee98b850236db56544a" [2]=> string(32) "325bcf78cfef4ee98b850236db56544a" [3]=> string(32) "325f2b7858692e96449e56106d02c6ea" [4]=> string(54) "write 325f2b7858692e96449e56106d02c6ea: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 325f2b7858692e96449e56106d02c6ea" [8]=> string(40) "destroy 325f2b7858692e96449e56106d02c6ea" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.17
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 6957dc1e0b2f021a7d19a14f1572f795" [2]=> string(32) "6957dc1e0b2f021a7d19a14f1572f795" [3]=> string(32) "12d2344f81a9b7db1da96094c45fb939" [4]=> string(54) "write 12d2344f81a9b7db1da96094c45fb939: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 12d2344f81a9b7db1da96094c45fb939" [8]=> string(40) "destroy 12d2344f81a9b7db1da96094c45fb939" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.16
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read cf99b34bce393b48858172c4053f0af9" [2]=> string(32) "cf99b34bce393b48858172c4053f0af9" [3]=> string(32) "50538e58e16fe7cbe1dd469a5cc74fb6" [4]=> string(54) "write 50538e58e16fe7cbe1dd469a5cc74fb6: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 50538e58e16fe7cbe1dd469a5cc74fb6" [8]=> string(40) "destroy 50538e58e16fe7cbe1dd469a5cc74fb6" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.15
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 77c9c7fe1114745f7ac6359ff08152e6" [2]=> string(32) "77c9c7fe1114745f7ac6359ff08152e6" [3]=> string(32) "b9f43532167087a82e4ad20c5c4ed3c0" [4]=> string(54) "write b9f43532167087a82e4ad20c5c4ed3c0: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read b9f43532167087a82e4ad20c5c4ed3c0" [8]=> string(40) "destroy b9f43532167087a82e4ad20c5c4ed3c0" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.14
array(12) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 4165239582942dcec4af88e496ea839f" [2]=> string(7) "gc 1440" [3]=> string(32) "4165239582942dcec4af88e496ea839f" [4]=> string(32) "5927f0bad0320f0c7bd0dcd4d9d730b7" [5]=> string(54) "write 5927f0bad0320f0c7bd0dcd4d9d730b7: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5927f0bad0320f0c7bd0dcd4d9d730b7" [9]=> string(40) "destroy 5927f0bad0320f0c7bd0dcd4d9d730b7" [10]=> string(5) "close" [11]=> string(9) "array ( )" }
Output for 5.4.13
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 50aa9b95068820782f8428eaf17a32f1" [2]=> string(32) "50aa9b95068820782f8428eaf17a32f1" [3]=> string(32) "683b1a8520b6adf2013f26985e349b48" [4]=> string(54) "write 683b1a8520b6adf2013f26985e349b48: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 683b1a8520b6adf2013f26985e349b48" [8]=> string(40) "destroy 683b1a8520b6adf2013f26985e349b48" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.12
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 8b4050753a138b15eed4e1b6bde003b6" [2]=> string(32) "8b4050753a138b15eed4e1b6bde003b6" [3]=> string(32) "768990b940fb847d118ce89477d2e104" [4]=> string(54) "write 768990b940fb847d118ce89477d2e104: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 768990b940fb847d118ce89477d2e104" [8]=> string(40) "destroy 768990b940fb847d118ce89477d2e104" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.11
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d42dd187c7e2dbbba5324e513a13d647" [2]=> string(32) "d42dd187c7e2dbbba5324e513a13d647" [3]=> string(32) "f2aa920707b0f141113898662e1b918d" [4]=> string(54) "write f2aa920707b0f141113898662e1b918d: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f2aa920707b0f141113898662e1b918d" [8]=> string(40) "destroy f2aa920707b0f141113898662e1b918d" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.10
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 53b38a5dd5ab11b413c48a1cbc5f9edc" [2]=> string(32) "53b38a5dd5ab11b413c48a1cbc5f9edc" [3]=> string(32) "f407fdee0ed0f4d6a0a73bdb337170ee" [4]=> string(54) "write f407fdee0ed0f4d6a0a73bdb337170ee: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read f407fdee0ed0f4d6a0a73bdb337170ee" [8]=> string(40) "destroy f407fdee0ed0f4d6a0a73bdb337170ee" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.9
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b1e9cfdd7369b9aa67cd5bff7f6a93ad" [2]=> string(32) "b1e9cfdd7369b9aa67cd5bff7f6a93ad" [3]=> string(32) "bb195c5304f1a3532e86282084fa503c" [4]=> string(54) "write bb195c5304f1a3532e86282084fa503c: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read bb195c5304f1a3532e86282084fa503c" [8]=> string(40) "destroy bb195c5304f1a3532e86282084fa503c" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.8
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 48386d181ed68e1fc1579b5e2480fefd" [2]=> string(32) "48386d181ed68e1fc1579b5e2480fefd" [3]=> string(32) "444e4c77236ffbd08e228533e60aee33" [4]=> string(54) "write 444e4c77236ffbd08e228533e60aee33: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 444e4c77236ffbd08e228533e60aee33" [8]=> string(40) "destroy 444e4c77236ffbd08e228533e60aee33" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.7
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read eeb87ef75a0d60f9548d7e240b42b017" [2]=> string(32) "eeb87ef75a0d60f9548d7e240b42b017" [3]=> string(32) "101bb315701ed7acb9aef6068b6d8093" [4]=> string(54) "write 101bb315701ed7acb9aef6068b6d8093: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 101bb315701ed7acb9aef6068b6d8093" [8]=> string(40) "destroy 101bb315701ed7acb9aef6068b6d8093" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.6
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read d8830b9c657be443e25bc430cebccaf7" [2]=> string(32) "d8830b9c657be443e25bc430cebccaf7" [3]=> string(32) "0cd001233bf93164f133873c0e213acd" [4]=> string(54) "write 0cd001233bf93164f133873c0e213acd: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0cd001233bf93164f133873c0e213acd" [8]=> string(40) "destroy 0cd001233bf93164f133873c0e213acd" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.5
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read a7a3e2f3d4facf5e84e23287630d339d" [2]=> string(32) "a7a3e2f3d4facf5e84e23287630d339d" [3]=> string(32) "5d65343cb765a156fa48ba8c8b807527" [4]=> string(54) "write 5d65343cb765a156fa48ba8c8b807527: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5d65343cb765a156fa48ba8c8b807527" [8]=> string(40) "destroy 5d65343cb765a156fa48ba8c8b807527" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.4
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read b50d0928a22af95bdd7e9598479d513a" [2]=> string(32) "b50d0928a22af95bdd7e9598479d513a" [3]=> string(32) "ca9199547a79da671108ba28751a7225" [4]=> string(54) "write ca9199547a79da671108ba28751a7225: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read ca9199547a79da671108ba28751a7225" [8]=> string(40) "destroy ca9199547a79da671108ba28751a7225" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.3
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 9d290c92a136e0b48dbde2e50ccd2208" [2]=> string(32) "9d290c92a136e0b48dbde2e50ccd2208" [3]=> string(32) "e4698e632915c7c4b202e273e0792a50" [4]=> string(54) "write e4698e632915c7c4b202e273e0792a50: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read e4698e632915c7c4b202e273e0792a50" [8]=> string(40) "destroy e4698e632915c7c4b202e273e0792a50" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.2
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 3ba15cf18439a0d03f0d2e0e34d04394" [2]=> string(32) "3ba15cf18439a0d03f0d2e0e34d04394" [3]=> string(32) "0c2d4ba45abe7fd3d25c88bd7dc2b682" [4]=> string(54) "write 0c2d4ba45abe7fd3d25c88bd7dc2b682: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 0c2d4ba45abe7fd3d25c88bd7dc2b682" [8]=> string(40) "destroy 0c2d4ba45abe7fd3d25c88bd7dc2b682" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.1
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read 1fb5eca67e50fc241441ba43e5e33184" [2]=> string(32) "1fb5eca67e50fc241441ba43e5e33184" [3]=> string(32) "5e2f968d1dff7e590842f7037a1da802" [4]=> string(54) "write 5e2f968d1dff7e590842f7037a1da802: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 5e2f968d1dff7e590842f7037a1da802" [8]=> string(40) "destroy 5e2f968d1dff7e590842f7037a1da802" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.4.0
array(11) { [0]=> string(14) "open PHPSESSID" [1]=> string(37) "read bc768d033be1df86a734e35a3e33218e" [2]=> string(32) "bc768d033be1df86a734e35a3e33218e" [3]=> string(32) "55520f9720d7473fcf1dc30361050a84" [4]=> string(54) "write 55520f9720d7473fcf1dc30361050a84: foo|s:3:"bar";" [5]=> string(5) "close" [6]=> string(14) "open PHPSESSID" [7]=> string(37) "read 55520f9720d7473fcf1dc30361050a84" [8]=> string(40) "destroy 55520f9720d7473fcf1dc30361050a84" [9]=> string(5) "close" [10]=> string(9) "array ( )" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/THXEc 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/THXEc on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/THXEc 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/THXEc on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/THXEc 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/THXEc 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/THXEc on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/THXEc on line 4
Process exited with code 255.

preferences:
289.9 ms | 401 KiB | 371 Q