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); } } ini_set('session.gc_maxlifetime', 20.45); $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(); $handler->messages[] = 'current session_id: ' . session_id(); 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/t3uVQ 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/t3uVQ 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/t3uVQ 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/t3uVQ 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/t3uVQ 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/t3uVQ on line 33 Warning: ini_set(): Session ini settings cannot be changed after headers have already been sent in /in/t3uVQ on line 43 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have already been sent in /in/t3uVQ on line 45 Warning: session_start(): Session cannot be started after headers have already been sent in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Session ID cannot be regenerated when there is no active session in /in/t3uVQ on line 56 Warning: session_start(): Session cannot be started after headers have already been sent in /in/t3uVQ on line 61 Warning: session_destroy(): Trying to destroy uninitialized session in /in/t3uVQ on line 62 Warning: session_id(): Session ID cannot be changed after headers have already been sent in /in/t3uVQ on line 67 Warning: session_start(): Session cannot be started after headers have already been sent in /in/t3uVQ on line 68 array(5) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(20) "current session_id: " [2]=> string(20) "current session_id: " [3]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [4]=> string(22) "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/t3uVQ:51 Stack trace: #0 /in/t3uVQ(51): session_start() #1 {main} thrown in /in/t3uVQ on line 51 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/t3uVQ on line 51 Warning: session_start(): Session callback expects true/false return value in /in/t3uVQ on line 51 Warning: session_start(): Failed to initialize storage module: user (path: ) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /in/t3uVQ on line 56 Warning: session_start(): Cannot start session when headers already sent in /in/t3uVQ on line 61 Warning: session_destroy(): Trying to destroy uninitialized session in /in/t3uVQ on line 62 Warning: session_id(): Cannot change session id when headers already sent in /in/t3uVQ on line 67 Warning: session_start(): Cannot start session when headers already sent in /in/t3uVQ on line 68 array(7) { [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: " [5]=> string(50) "array ( 'before' => 'start', 'foo' => 'bar', )" [6]=> string(22) "current session_id: ''" }
Output for 7.1.0 - 7.1.25
Warning: session_start(): Session callback expects true/false return value in /in/t3uVQ on line 51 Warning: session_start(): Session callback expects true/false return value in /in/t3uVQ on line 51 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/t3uVQ on line 51
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/t3uVQ on line 51 Fatal error: session_start(): Failed to initialize storage module: user (path: ) in /in/t3uVQ on line 51 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(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 38121664c31cffdbefc015d730ad976f" [3]=> string(52) "current session_id: 38121664c31cffdbefc015d730ad976f" [4]=> string(52) "current session_id: 00ff86e5430a1bd23b239bc8e12caa6a" [5]=> string(54) "write 00ff86e5430a1bd23b239bc8e12caa6a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 00ff86e5430a1bd23b239bc8e12caa6a" [9]=> string(40) "destroy 00ff86e5430a1bd23b239bc8e12caa6a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.21
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8ffca40c6e9157865f40c1c1d1aef9e7" [3]=> string(52) "current session_id: 8ffca40c6e9157865f40c1c1d1aef9e7" [4]=> string(52) "current session_id: 121c811798d9ada1fbc397a040a613ec" [5]=> string(54) "write 121c811798d9ada1fbc397a040a613ec: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 121c811798d9ada1fbc397a040a613ec" [9]=> string(40) "destroy 121c811798d9ada1fbc397a040a613ec" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.20
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e079801ce3af13dd02f9d175254d7d71" [3]=> string(52) "current session_id: e079801ce3af13dd02f9d175254d7d71" [4]=> string(52) "current session_id: b9f01e5da550e13a772316064ddaf801" [5]=> string(54) "write b9f01e5da550e13a772316064ddaf801: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b9f01e5da550e13a772316064ddaf801" [9]=> string(40) "destroy b9f01e5da550e13a772316064ddaf801" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.19
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read eb192787ead448104a2fbde7a2e608bd" [3]=> string(52) "current session_id: eb192787ead448104a2fbde7a2e608bd" [4]=> string(52) "current session_id: 18eb07b9fcf73a20b9f64403c378caf5" [5]=> string(54) "write 18eb07b9fcf73a20b9f64403c378caf5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 18eb07b9fcf73a20b9f64403c378caf5" [9]=> string(40) "destroy 18eb07b9fcf73a20b9f64403c378caf5" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.18
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ec14c4d6e4c94b69428ce5a42c0c651d" [3]=> string(52) "current session_id: ec14c4d6e4c94b69428ce5a42c0c651d" [4]=> string(52) "current session_id: bf52f87dc759d86c2336becc3a933397" [5]=> string(54) "write bf52f87dc759d86c2336becc3a933397: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bf52f87dc759d86c2336becc3a933397" [9]=> string(40) "destroy bf52f87dc759d86c2336becc3a933397" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.17
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read fb14470dcbcdecfcd9f447ec94492c15" [3]=> string(52) "current session_id: fb14470dcbcdecfcd9f447ec94492c15" [4]=> string(52) "current session_id: ef07320cd025e57bf05e0fb21f102589" [5]=> string(54) "write ef07320cd025e57bf05e0fb21f102589: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ef07320cd025e57bf05e0fb21f102589" [9]=> string(40) "destroy ef07320cd025e57bf05e0fb21f102589" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.16
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5755be1af46841af05f97b97fbc126c5" [3]=> string(52) "current session_id: 5755be1af46841af05f97b97fbc126c5" [4]=> string(52) "current session_id: 370d8f0b53fc753457a1993d44a10152" [5]=> string(54) "write 370d8f0b53fc753457a1993d44a10152: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 370d8f0b53fc753457a1993d44a10152" [9]=> string(40) "destroy 370d8f0b53fc753457a1993d44a10152" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.15
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ef3cfa3c8cc0fdd292122f6aa8676084" [3]=> string(52) "current session_id: ef3cfa3c8cc0fdd292122f6aa8676084" [4]=> string(52) "current session_id: 6eebae07ea52c1cb194993879ec3f0c1" [5]=> string(54) "write 6eebae07ea52c1cb194993879ec3f0c1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6eebae07ea52c1cb194993879ec3f0c1" [9]=> string(40) "destroy 6eebae07ea52c1cb194993879ec3f0c1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.14
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6a6479d70948150f56b1a3bf2ed32c8b" [3]=> string(52) "current session_id: 6a6479d70948150f56b1a3bf2ed32c8b" [4]=> string(52) "current session_id: 7eb3a1df5030ea72329fa14c5835069e" [5]=> string(54) "write 7eb3a1df5030ea72329fa14c5835069e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 7eb3a1df5030ea72329fa14c5835069e" [9]=> string(40) "destroy 7eb3a1df5030ea72329fa14c5835069e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.13
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 65cec958bd437bdd292c4c5bfcb6b3cb" [3]=> string(52) "current session_id: 65cec958bd437bdd292c4c5bfcb6b3cb" [4]=> string(52) "current session_id: 4a6efd6473e9cbcf16fee1d63f255cf1" [5]=> string(54) "write 4a6efd6473e9cbcf16fee1d63f255cf1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 4a6efd6473e9cbcf16fee1d63f255cf1" [9]=> string(40) "destroy 4a6efd6473e9cbcf16fee1d63f255cf1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.12
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c5b5c9a944bb0d76aeaf889da2dba4ae" [3]=> string(52) "current session_id: c5b5c9a944bb0d76aeaf889da2dba4ae" [4]=> string(52) "current session_id: a635a2cfa3051ef5a597d88372b0c0aa" [5]=> string(54) "write a635a2cfa3051ef5a597d88372b0c0aa: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a635a2cfa3051ef5a597d88372b0c0aa" [9]=> string(40) "destroy a635a2cfa3051ef5a597d88372b0c0aa" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.11
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 673d78a586582e35fac3263a92c88239" [3]=> string(52) "current session_id: 673d78a586582e35fac3263a92c88239" [4]=> string(52) "current session_id: a0f7ea0ecb7dc45515cbef6d2d2844b8" [5]=> string(54) "write a0f7ea0ecb7dc45515cbef6d2d2844b8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a0f7ea0ecb7dc45515cbef6d2d2844b8" [9]=> string(40) "destroy a0f7ea0ecb7dc45515cbef6d2d2844b8" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.10
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8c14227647056978cb8089c1e6262507" [3]=> string(52) "current session_id: 8c14227647056978cb8089c1e6262507" [4]=> string(52) "current session_id: 6377af6e64d79f70c1dac33fe244bdf4" [5]=> string(54) "write 6377af6e64d79f70c1dac33fe244bdf4: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6377af6e64d79f70c1dac33fe244bdf4" [9]=> string(40) "destroy 6377af6e64d79f70c1dac33fe244bdf4" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.6.9
array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 669cdbd5ed452f5bdb8d70d8fcda53eb" [3]=> string(52) "current session_id: 669cdbd5ed452f5bdb8d70d8fcda53eb" [4]=> string(52) "current session_id: 978bad3cbace540f2424eca39ce3c0d9" [5]=> string(54) "write 978bad3cbace540f2424eca39ce3c0d9: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 978bad3cbace540f2424eca39ce3c0d9" [9]=> string(5) "gc 20" [10]=> string(40) "destroy 978bad3cbace540f2424eca39ce3c0d9" [11]=> string(5) "close" [12]=> string(9) "array ( )" [13]=> string(22) "current session_id: ''" [14]=> string(14) "open PHPSESSID" [15]=> string(24) "read explicit-session-id" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.6.8
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 538e787469f97b07b2c4a4f90425af71" [3]=> string(52) "current session_id: 538e787469f97b07b2c4a4f90425af71" [4]=> string(52) "current session_id: 8974f16f0a61062972cc326bee01f157" [5]=> string(54) "write 8974f16f0a61062972cc326bee01f157: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 8974f16f0a61062972cc326bee01f157" [9]=> string(40) "destroy 8974f16f0a61062972cc326bee01f157" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.35
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ef61096c8f94529b51371fd83845fd1c" [3]=> string(52) "current session_id: ef61096c8f94529b51371fd83845fd1c" [4]=> string(52) "current session_id: 1692a6035392ee8b82d6ebe31b7f0d8f" [5]=> string(54) "write 1692a6035392ee8b82d6ebe31b7f0d8f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1692a6035392ee8b82d6ebe31b7f0d8f" [9]=> string(40) "destroy 1692a6035392ee8b82d6ebe31b7f0d8f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.34
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 17ece8d715f514e2022cf4c83895bd12" [3]=> string(52) "current session_id: 17ece8d715f514e2022cf4c83895bd12" [4]=> string(52) "current session_id: 42590ee45682d5bccbe355c8b6c170b1" [5]=> string(54) "write 42590ee45682d5bccbe355c8b6c170b1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 42590ee45682d5bccbe355c8b6c170b1" [9]=> string(40) "destroy 42590ee45682d5bccbe355c8b6c170b1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.33
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read aa339f5e03931def8a8a8a50957ab0ec" [3]=> string(52) "current session_id: aa339f5e03931def8a8a8a50957ab0ec" [4]=> string(52) "current session_id: a3046afbdd7cb18bf28a75084d3ea6eb" [5]=> string(54) "write a3046afbdd7cb18bf28a75084d3ea6eb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a3046afbdd7cb18bf28a75084d3ea6eb" [9]=> string(40) "destroy a3046afbdd7cb18bf28a75084d3ea6eb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.32
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read afe5db511db67ceaa3776e23a269d733" [3]=> string(52) "current session_id: afe5db511db67ceaa3776e23a269d733" [4]=> string(52) "current session_id: edb2fbf8b795f008f21f6647eb04bdc0" [5]=> string(54) "write edb2fbf8b795f008f21f6647eb04bdc0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read edb2fbf8b795f008f21f6647eb04bdc0" [9]=> string(40) "destroy edb2fbf8b795f008f21f6647eb04bdc0" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.31
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 926f93599bf89fa3cfa1ab569535e370" [3]=> string(52) "current session_id: 926f93599bf89fa3cfa1ab569535e370" [4]=> string(52) "current session_id: 0cace25213288435aa30ee471844d2aa" [5]=> string(54) "write 0cace25213288435aa30ee471844d2aa: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0cace25213288435aa30ee471844d2aa" [9]=> string(40) "destroy 0cace25213288435aa30ee471844d2aa" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.30
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 05b85b2a60f64d1ba84d5233f408b605" [3]=> string(52) "current session_id: 05b85b2a60f64d1ba84d5233f408b605" [4]=> string(52) "current session_id: 6fb7a321cbd302c0198b659e4c5b64a3" [5]=> string(54) "write 6fb7a321cbd302c0198b659e4c5b64a3: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 6fb7a321cbd302c0198b659e4c5b64a3" [9]=> string(40) "destroy 6fb7a321cbd302c0198b659e4c5b64a3" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.29
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d89701d4829af8a244570628187b3ffc" [3]=> string(52) "current session_id: d89701d4829af8a244570628187b3ffc" [4]=> string(52) "current session_id: 64aaa7a8c43bc925b5a8e6260618ddd0" [5]=> string(54) "write 64aaa7a8c43bc925b5a8e6260618ddd0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 64aaa7a8c43bc925b5a8e6260618ddd0" [9]=> string(40) "destroy 64aaa7a8c43bc925b5a8e6260618ddd0" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.28
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 45552f3a19ebdeb24fe43d65f9f5bee0" [3]=> string(52) "current session_id: 45552f3a19ebdeb24fe43d65f9f5bee0" [4]=> string(52) "current session_id: f5d4b7dc088d08c80741c26a06e1ff21" [5]=> string(54) "write f5d4b7dc088d08c80741c26a06e1ff21: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f5d4b7dc088d08c80741c26a06e1ff21" [9]=> string(40) "destroy f5d4b7dc088d08c80741c26a06e1ff21" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.27
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 609d034b2165b518e610fe6f4efcce13" [3]=> string(52) "current session_id: 609d034b2165b518e610fe6f4efcce13" [4]=> string(52) "current session_id: f81b14ec90a0de209723d4766399a6ec" [5]=> string(54) "write f81b14ec90a0de209723d4766399a6ec: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f81b14ec90a0de209723d4766399a6ec" [9]=> string(40) "destroy f81b14ec90a0de209723d4766399a6ec" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.26
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c1a86847f104af122b165fb6e7bd34b3" [3]=> string(52) "current session_id: c1a86847f104af122b165fb6e7bd34b3" [4]=> string(52) "current session_id: f81e0ea76ff5cc1d068c04d5a8fe079a" [5]=> string(54) "write f81e0ea76ff5cc1d068c04d5a8fe079a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f81e0ea76ff5cc1d068c04d5a8fe079a" [9]=> string(40) "destroy f81e0ea76ff5cc1d068c04d5a8fe079a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.25
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f925a3f20457c91c1ee8694f89d8ea93" [3]=> string(52) "current session_id: f925a3f20457c91c1ee8694f89d8ea93" [4]=> string(52) "current session_id: f47d72c2a23662884108d1d33c185c60" [5]=> string(54) "write f47d72c2a23662884108d1d33c185c60: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f47d72c2a23662884108d1d33c185c60" [9]=> string(40) "destroy f47d72c2a23662884108d1d33c185c60" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.5.24
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9fd7e45335a57428ade69a559208dd25" [3]=> string(52) "current session_id: 9fd7e45335a57428ade69a559208dd25" [4]=> string(52) "current session_id: 97a95df5b4efeb352a5a7b75eb404b0f" [5]=> string(54) "write 97a95df5b4efeb352a5a7b75eb404b0f: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 97a95df5b4efeb352a5a7b75eb404b0f" [9]=> string(40) "destroy 97a95df5b4efeb352a5a7b75eb404b0f" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.45
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read d5420be868bebb4a22773164c6e19d34" [3]=> string(52) "current session_id: d5420be868bebb4a22773164c6e19d34" [4]=> string(52) "current session_id: 54e3fbf704f069b081bf7ef87142f159" [5]=> string(54) "write 54e3fbf704f069b081bf7ef87142f159: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 54e3fbf704f069b081bf7ef87142f159" [9]=> string(40) "destroy 54e3fbf704f069b081bf7ef87142f159" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.44
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bb882687d15138f923b35838fb1d1cae" [3]=> string(52) "current session_id: bb882687d15138f923b35838fb1d1cae" [4]=> string(52) "current session_id: 345ea4e871339d0facd4b70027b89962" [5]=> string(54) "write 345ea4e871339d0facd4b70027b89962: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 345ea4e871339d0facd4b70027b89962" [9]=> string(40) "destroy 345ea4e871339d0facd4b70027b89962" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.43
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e8c4f4d7382ebf22546eb8156143af21" [3]=> string(52) "current session_id: e8c4f4d7382ebf22546eb8156143af21" [4]=> string(52) "current session_id: f1abecad7210cbe86b41ee1e82336ec5" [5]=> string(54) "write f1abecad7210cbe86b41ee1e82336ec5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f1abecad7210cbe86b41ee1e82336ec5" [9]=> string(40) "destroy f1abecad7210cbe86b41ee1e82336ec5" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.42
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0984c7421113ad09b91c1bc619d8ca4b" [3]=> string(52) "current session_id: 0984c7421113ad09b91c1bc619d8ca4b" [4]=> string(52) "current session_id: ed4e01276151e57b3341f8e268c7aea2" [5]=> string(54) "write ed4e01276151e57b3341f8e268c7aea2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ed4e01276151e57b3341f8e268c7aea2" [9]=> string(40) "destroy ed4e01276151e57b3341f8e268c7aea2" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.41
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 496fcf0d932ed53c4ceedafce297cb0e" [3]=> string(52) "current session_id: 496fcf0d932ed53c4ceedafce297cb0e" [4]=> string(52) "current session_id: 23029db039279eb9f6b0c97b933ccd8a" [5]=> string(54) "write 23029db039279eb9f6b0c97b933ccd8a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 23029db039279eb9f6b0c97b933ccd8a" [9]=> string(40) "destroy 23029db039279eb9f6b0c97b933ccd8a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.40
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 6802286ebec073e5a9a93ce4ce7b6973" [3]=> string(52) "current session_id: 6802286ebec073e5a9a93ce4ce7b6973" [4]=> string(52) "current session_id: 62c1e5306043143b52519a9715722f8b" [5]=> string(54) "write 62c1e5306043143b52519a9715722f8b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 62c1e5306043143b52519a9715722f8b" [9]=> string(40) "destroy 62c1e5306043143b52519a9715722f8b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.39
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 310a1cfdff42d0d0d9485d161403ad60" [3]=> string(52) "current session_id: 310a1cfdff42d0d0d9485d161403ad60" [4]=> string(52) "current session_id: ff85d9d49fa9decb2e6af58aa9b945e1" [5]=> string(54) "write ff85d9d49fa9decb2e6af58aa9b945e1: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ff85d9d49fa9decb2e6af58aa9b945e1" [9]=> string(40) "destroy ff85d9d49fa9decb2e6af58aa9b945e1" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.38
array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dd6cfaa05bee5b18505bcaa3b91936b7" [3]=> string(52) "current session_id: dd6cfaa05bee5b18505bcaa3b91936b7" [4]=> string(52) "current session_id: bd1d393a19cbf2c7544cd48aff94e764" [5]=> string(54) "write bd1d393a19cbf2c7544cd48aff94e764: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bd1d393a19cbf2c7544cd48aff94e764" [9]=> string(40) "destroy bd1d393a19cbf2c7544cd48aff94e764" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.37
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read dbd4b3c3d4c5db93d0ca86167302b13b" [3]=> string(52) "current session_id: dbd4b3c3d4c5db93d0ca86167302b13b" [4]=> string(52) "current session_id: dbd4b3c3d4c5db93d0ca86167302b13b" [5]=> string(54) "write dbd4b3c3d4c5db93d0ca86167302b13b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read dbd4b3c3d4c5db93d0ca86167302b13b" [9]=> string(40) "destroy dbd4b3c3d4c5db93d0ca86167302b13b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.36
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 766c987cfdda4d167ce00eac4076bf83" [3]=> string(52) "current session_id: 766c987cfdda4d167ce00eac4076bf83" [4]=> string(52) "current session_id: 766c987cfdda4d167ce00eac4076bf83" [5]=> string(54) "write 766c987cfdda4d167ce00eac4076bf83: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 766c987cfdda4d167ce00eac4076bf83" [9]=> string(40) "destroy 766c987cfdda4d167ce00eac4076bf83" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.35
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c042c38f6db2dd5fec8f322b717890b0" [3]=> string(52) "current session_id: c042c38f6db2dd5fec8f322b717890b0" [4]=> string(52) "current session_id: c042c38f6db2dd5fec8f322b717890b0" [5]=> string(54) "write c042c38f6db2dd5fec8f322b717890b0: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c042c38f6db2dd5fec8f322b717890b0" [9]=> string(40) "destroy c042c38f6db2dd5fec8f322b717890b0" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.34
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3038877712016f7143dccddc53ee0e61" [3]=> string(52) "current session_id: 3038877712016f7143dccddc53ee0e61" [4]=> string(52) "current session_id: 3038877712016f7143dccddc53ee0e61" [5]=> string(54) "write 3038877712016f7143dccddc53ee0e61: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3038877712016f7143dccddc53ee0e61" [9]=> string(40) "destroy 3038877712016f7143dccddc53ee0e61" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.32
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read a7a603af42ec031f0ea918efdca82c00" [3]=> string(52) "current session_id: a7a603af42ec031f0ea918efdca82c00" [4]=> string(52) "current session_id: a7a603af42ec031f0ea918efdca82c00" [5]=> string(54) "write a7a603af42ec031f0ea918efdca82c00: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read a7a603af42ec031f0ea918efdca82c00" [9]=> string(40) "destroy a7a603af42ec031f0ea918efdca82c00" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.31
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 8a4ee92cd54c5d35a24764d6d3d35808" [3]=> string(52) "current session_id: 8a4ee92cd54c5d35a24764d6d3d35808" [4]=> string(52) "current session_id: 8a4ee92cd54c5d35a24764d6d3d35808" [5]=> string(54) "write 8a4ee92cd54c5d35a24764d6d3d35808: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 8a4ee92cd54c5d35a24764d6d3d35808" [9]=> string(40) "destroy 8a4ee92cd54c5d35a24764d6d3d35808" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.30
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 54ced114e20152cbbf71b28cc2e732de" [3]=> string(52) "current session_id: 54ced114e20152cbbf71b28cc2e732de" [4]=> string(52) "current session_id: 54ced114e20152cbbf71b28cc2e732de" [5]=> string(54) "write 54ced114e20152cbbf71b28cc2e732de: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 54ced114e20152cbbf71b28cc2e732de" [9]=> string(40) "destroy 54ced114e20152cbbf71b28cc2e732de" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.29
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 02d56b80a74147177c9e0223ad111755" [3]=> string(52) "current session_id: 02d56b80a74147177c9e0223ad111755" [4]=> string(52) "current session_id: 02d56b80a74147177c9e0223ad111755" [5]=> string(54) "write 02d56b80a74147177c9e0223ad111755: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 02d56b80a74147177c9e0223ad111755" [9]=> string(40) "destroy 02d56b80a74147177c9e0223ad111755" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.28
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 847ddf87f4d21e394ce9b2fd81f6c157" [3]=> string(52) "current session_id: 847ddf87f4d21e394ce9b2fd81f6c157" [4]=> string(52) "current session_id: 847ddf87f4d21e394ce9b2fd81f6c157" [5]=> string(54) "write 847ddf87f4d21e394ce9b2fd81f6c157: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 847ddf87f4d21e394ce9b2fd81f6c157" [9]=> string(40) "destroy 847ddf87f4d21e394ce9b2fd81f6c157" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.27
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read bc41e9a2ebe63c14df72de2079134895" [3]=> string(52) "current session_id: bc41e9a2ebe63c14df72de2079134895" [4]=> string(52) "current session_id: bc41e9a2ebe63c14df72de2079134895" [5]=> string(54) "write bc41e9a2ebe63c14df72de2079134895: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read bc41e9a2ebe63c14df72de2079134895" [9]=> string(40) "destroy bc41e9a2ebe63c14df72de2079134895" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.26
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 0c011474a634487c844bfd07286db9fb" [3]=> string(52) "current session_id: 0c011474a634487c844bfd07286db9fb" [4]=> string(52) "current session_id: 0c011474a634487c844bfd07286db9fb" [5]=> string(54) "write 0c011474a634487c844bfd07286db9fb: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 0c011474a634487c844bfd07286db9fb" [9]=> string(40) "destroy 0c011474a634487c844bfd07286db9fb" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.25
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 26d7f18622443d9251f78af7fc0921de" [3]=> string(52) "current session_id: 26d7f18622443d9251f78af7fc0921de" [4]=> string(52) "current session_id: 26d7f18622443d9251f78af7fc0921de" [5]=> string(54) "write 26d7f18622443d9251f78af7fc0921de: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 26d7f18622443d9251f78af7fc0921de" [9]=> string(40) "destroy 26d7f18622443d9251f78af7fc0921de" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.24
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1f5fcfe6162f2881032cb267f365a92e" [3]=> string(52) "current session_id: 1f5fcfe6162f2881032cb267f365a92e" [4]=> string(52) "current session_id: 1f5fcfe6162f2881032cb267f365a92e" [5]=> string(54) "write 1f5fcfe6162f2881032cb267f365a92e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1f5fcfe6162f2881032cb267f365a92e" [9]=> string(40) "destroy 1f5fcfe6162f2881032cb267f365a92e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.23
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 200839a48cef4c6806ca9c087a20e293" [3]=> string(52) "current session_id: 200839a48cef4c6806ca9c087a20e293" [4]=> string(52) "current session_id: 200839a48cef4c6806ca9c087a20e293" [5]=> string(54) "write 200839a48cef4c6806ca9c087a20e293: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 200839a48cef4c6806ca9c087a20e293" [9]=> string(40) "destroy 200839a48cef4c6806ca9c087a20e293" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.22
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 16b1fef7df87d41c151e3787bed953d2" [3]=> string(52) "current session_id: 16b1fef7df87d41c151e3787bed953d2" [4]=> string(52) "current session_id: 16b1fef7df87d41c151e3787bed953d2" [5]=> string(54) "write 16b1fef7df87d41c151e3787bed953d2: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 16b1fef7df87d41c151e3787bed953d2" [9]=> string(40) "destroy 16b1fef7df87d41c151e3787bed953d2" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.21
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(18) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 25b44fc59103338416a65863867b059a" [3]=> string(52) "current session_id: 25b44fc59103338416a65863867b059a" [4]=> string(52) "current session_id: 25b44fc59103338416a65863867b059a" [5]=> string(54) "write 25b44fc59103338416a65863867b059a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 25b44fc59103338416a65863867b059a" [9]=> string(40) "destroy 25b44fc59103338416a65863867b059a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(7) "gc 1440" [16]=> string(42) "write explicit-session-id: john|s:3:"doe";" [17]=> string(5) "close" }
Output for 5.4.20
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read ef732bfe51a3cf9121de2f9b276fd582" [3]=> string(52) "current session_id: ef732bfe51a3cf9121de2f9b276fd582" [4]=> string(52) "current session_id: ef732bfe51a3cf9121de2f9b276fd582" [5]=> string(54) "write ef732bfe51a3cf9121de2f9b276fd582: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read ef732bfe51a3cf9121de2f9b276fd582" [9]=> string(40) "destroy ef732bfe51a3cf9121de2f9b276fd582" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.19
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 430da1f078e8df3d8305327508a8ad44" [3]=> string(52) "current session_id: 430da1f078e8df3d8305327508a8ad44" [4]=> string(52) "current session_id: 430da1f078e8df3d8305327508a8ad44" [5]=> string(54) "write 430da1f078e8df3d8305327508a8ad44: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 430da1f078e8df3d8305327508a8ad44" [9]=> string(40) "destroy 430da1f078e8df3d8305327508a8ad44" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.18
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read da92a018e396a041f445e59109c43b72" [3]=> string(52) "current session_id: da92a018e396a041f445e59109c43b72" [4]=> string(52) "current session_id: da92a018e396a041f445e59109c43b72" [5]=> string(54) "write da92a018e396a041f445e59109c43b72: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read da92a018e396a041f445e59109c43b72" [9]=> string(40) "destroy da92a018e396a041f445e59109c43b72" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.17
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 2d189e51673e46601e32082966bc3be5" [3]=> string(52) "current session_id: 2d189e51673e46601e32082966bc3be5" [4]=> string(52) "current session_id: 2d189e51673e46601e32082966bc3be5" [5]=> string(54) "write 2d189e51673e46601e32082966bc3be5: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 2d189e51673e46601e32082966bc3be5" [9]=> string(40) "destroy 2d189e51673e46601e32082966bc3be5" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.16
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 1fbc3d48c3dd95b465f541c775f12faa" [3]=> string(52) "current session_id: 1fbc3d48c3dd95b465f541c775f12faa" [4]=> string(52) "current session_id: 1fbc3d48c3dd95b465f541c775f12faa" [5]=> string(54) "write 1fbc3d48c3dd95b465f541c775f12faa: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 1fbc3d48c3dd95b465f541c775f12faa" [9]=> string(40) "destroy 1fbc3d48c3dd95b465f541c775f12faa" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.15
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 3e9db6e546d89054c503305f6c06e5c6" [3]=> string(52) "current session_id: 3e9db6e546d89054c503305f6c06e5c6" [4]=> string(52) "current session_id: 3e9db6e546d89054c503305f6c06e5c6" [5]=> string(54) "write 3e9db6e546d89054c503305f6c06e5c6: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 3e9db6e546d89054c503305f6c06e5c6" [9]=> string(40) "destroy 3e9db6e546d89054c503305f6c06e5c6" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.14
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 295bafbba07d012e5e3c12d0f52757ed" [3]=> string(52) "current session_id: 295bafbba07d012e5e3c12d0f52757ed" [4]=> string(52) "current session_id: 295bafbba07d012e5e3c12d0f52757ed" [5]=> string(54) "write 295bafbba07d012e5e3c12d0f52757ed: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 295bafbba07d012e5e3c12d0f52757ed" [9]=> string(40) "destroy 295bafbba07d012e5e3c12d0f52757ed" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.13
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read b8f6fea05f627255f9051a5c749bde9e" [3]=> string(52) "current session_id: b8f6fea05f627255f9051a5c749bde9e" [4]=> string(52) "current session_id: b8f6fea05f627255f9051a5c749bde9e" [5]=> string(54) "write b8f6fea05f627255f9051a5c749bde9e: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read b8f6fea05f627255f9051a5c749bde9e" [9]=> string(40) "destroy b8f6fea05f627255f9051a5c749bde9e" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.12
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read db072fa5b4fe2d094ea2ca9dcc25677b" [3]=> string(52) "current session_id: db072fa5b4fe2d094ea2ca9dcc25677b" [4]=> string(52) "current session_id: db072fa5b4fe2d094ea2ca9dcc25677b" [5]=> string(54) "write db072fa5b4fe2d094ea2ca9dcc25677b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read db072fa5b4fe2d094ea2ca9dcc25677b" [9]=> string(40) "destroy db072fa5b4fe2d094ea2ca9dcc25677b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.11
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read abcd71d73fda39c791681708927fe37b" [3]=> string(52) "current session_id: abcd71d73fda39c791681708927fe37b" [4]=> string(52) "current session_id: abcd71d73fda39c791681708927fe37b" [5]=> string(54) "write abcd71d73fda39c791681708927fe37b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read abcd71d73fda39c791681708927fe37b" [9]=> string(40) "destroy abcd71d73fda39c791681708927fe37b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.10
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read e914d5597c0fa4ca0bb5f71255519dac" [3]=> string(52) "current session_id: e914d5597c0fa4ca0bb5f71255519dac" [4]=> string(52) "current session_id: e914d5597c0fa4ca0bb5f71255519dac" [5]=> string(54) "write e914d5597c0fa4ca0bb5f71255519dac: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read e914d5597c0fa4ca0bb5f71255519dac" [9]=> string(40) "destroy e914d5597c0fa4ca0bb5f71255519dac" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.9
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 64376ac26ca9770f0005913cc98506ac" [3]=> string(52) "current session_id: 64376ac26ca9770f0005913cc98506ac" [4]=> string(52) "current session_id: 64376ac26ca9770f0005913cc98506ac" [5]=> string(54) "write 64376ac26ca9770f0005913cc98506ac: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 64376ac26ca9770f0005913cc98506ac" [9]=> string(40) "destroy 64376ac26ca9770f0005913cc98506ac" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.8
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 346497c49cfbcd43ae7d7891ee2d4829" [3]=> string(52) "current session_id: 346497c49cfbcd43ae7d7891ee2d4829" [4]=> string(52) "current session_id: 346497c49cfbcd43ae7d7891ee2d4829" [5]=> string(54) "write 346497c49cfbcd43ae7d7891ee2d4829: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 346497c49cfbcd43ae7d7891ee2d4829" [9]=> string(40) "destroy 346497c49cfbcd43ae7d7891ee2d4829" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.7
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read cba29393e2da8a3186966bb18d65360b" [3]=> string(52) "current session_id: cba29393e2da8a3186966bb18d65360b" [4]=> string(52) "current session_id: cba29393e2da8a3186966bb18d65360b" [5]=> string(54) "write cba29393e2da8a3186966bb18d65360b: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read cba29393e2da8a3186966bb18d65360b" [9]=> string(40) "destroy cba29393e2da8a3186966bb18d65360b" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.6
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 5cdadc257fc67a363ed0b0202757e513" [3]=> string(52) "current session_id: 5cdadc257fc67a363ed0b0202757e513" [4]=> string(52) "current session_id: 5cdadc257fc67a363ed0b0202757e513" [5]=> string(54) "write 5cdadc257fc67a363ed0b0202757e513: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 5cdadc257fc67a363ed0b0202757e513" [9]=> string(40) "destroy 5cdadc257fc67a363ed0b0202757e513" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.5
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 64c6a5194b9351fdd6a000c33eb30bb8" [3]=> string(52) "current session_id: 64c6a5194b9351fdd6a000c33eb30bb8" [4]=> string(52) "current session_id: 64c6a5194b9351fdd6a000c33eb30bb8" [5]=> string(54) "write 64c6a5194b9351fdd6a000c33eb30bb8: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 64c6a5194b9351fdd6a000c33eb30bb8" [9]=> string(40) "destroy 64c6a5194b9351fdd6a000c33eb30bb8" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.4
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read f3c57c2cef74820d4abfd75b359ce856" [3]=> string(52) "current session_id: f3c57c2cef74820d4abfd75b359ce856" [4]=> string(52) "current session_id: f3c57c2cef74820d4abfd75b359ce856" [5]=> string(54) "write f3c57c2cef74820d4abfd75b359ce856: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read f3c57c2cef74820d4abfd75b359ce856" [9]=> string(40) "destroy f3c57c2cef74820d4abfd75b359ce856" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.3
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 9bcc73bea300e942d23df4191ff305fc" [3]=> string(52) "current session_id: 9bcc73bea300e942d23df4191ff305fc" [4]=> string(52) "current session_id: 9bcc73bea300e942d23df4191ff305fc" [5]=> string(54) "write 9bcc73bea300e942d23df4191ff305fc: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 9bcc73bea300e942d23df4191ff305fc" [9]=> string(40) "destroy 9bcc73bea300e942d23df4191ff305fc" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.2
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read c3d9650d8f8b316322783db76caa6e5a" [3]=> string(52) "current session_id: c3d9650d8f8b316322783db76caa6e5a" [4]=> string(52) "current session_id: c3d9650d8f8b316322783db76caa6e5a" [5]=> string(54) "write c3d9650d8f8b316322783db76caa6e5a: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read c3d9650d8f8b316322783db76caa6e5a" [9]=> string(40) "destroy c3d9650d8f8b316322783db76caa6e5a" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.1
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 624fc61c8bcc4faff75b777a84540326" [3]=> string(52) "current session_id: 624fc61c8bcc4faff75b777a84540326" [4]=> string(52) "current session_id: 624fc61c8bcc4faff75b777a84540326" [5]=> string(54) "write 624fc61c8bcc4faff75b777a84540326: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 624fc61c8bcc4faff75b777a84540326" [9]=> string(40) "destroy 624fc61c8bcc4faff75b777a84540326" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.4.0
Warning: ini_set() has been disabled for security reasons in /in/t3uVQ on line 43 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 51 Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent in /in/t3uVQ on line 56 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 61 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/t3uVQ:43) in /in/t3uVQ on line 68 array(17) { [0]=> string(23) "isset($_SESSION): false" [1]=> string(14) "open PHPSESSID" [2]=> string(37) "read 68644b7c26bcb73aa551b6452a2558cd" [3]=> string(52) "current session_id: 68644b7c26bcb73aa551b6452a2558cd" [4]=> string(52) "current session_id: 68644b7c26bcb73aa551b6452a2558cd" [5]=> string(54) "write 68644b7c26bcb73aa551b6452a2558cd: foo|s:3:"bar";" [6]=> string(5) "close" [7]=> string(14) "open PHPSESSID" [8]=> string(37) "read 68644b7c26bcb73aa551b6452a2558cd" [9]=> string(40) "destroy 68644b7c26bcb73aa551b6452a2558cd" [10]=> string(5) "close" [11]=> string(9) "array ( )" [12]=> string(22) "current session_id: ''" [13]=> string(14) "open PHPSESSID" [14]=> string(24) "read explicit-session-id" [15]=> string(42) "write explicit-session-id: john|s:3:"doe";" [16]=> string(5) "close" }
Output for 5.3.0 - 5.3.29
Fatal error: Interface 'SessionHandlerInterface' not found in /in/t3uVQ 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/t3uVQ on line 4 Fatal error: Interface 'SessionHandlerInterface' not found in /in/t3uVQ 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/t3uVQ on line 4 Fatal error: Class 'SessionHandlerInterface' not found in /in/t3uVQ 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/t3uVQ 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/t3uVQ on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/t3uVQ on line 4
Process exited with code 255.

preferences:
255.09 ms | 401 KiB | 329 Q