ID: 38104
Updated by: [EMAIL PROTECTED]
Reported By: m dot v dot veluw dot smscity at gmail dot com
-Status: Open
+Status: Assigned
Bug Type: Session related
Operating System: any
PHP Version: 5.1.4
-Assigned To:
+Assigned To: sas
Previous Comments:
------------------------------------------------------------------------
[2006-07-14 10:23:58] m dot v dot veluw dot smscity at gmail dot com
Description:
------------
When using session_start() and session_write_close() with the same
session id/name will add multiple session cookies with the exact same
contents everytime session_start is used.
This is useless overhead if it is the same.
Reproduce code:
---------------
session_name('uniqueName1');
session_start();
$_SESSION['Foo1'] = 'Bar1';
session_write_close();
session_name('uniqueName2');
session_start();
$_SESSION['Foo2'] = 'Bar2';
session_write_close();
session_name('uniqueName1');
session_start();
$sessionValue = $_SESSION['Foo1'];
print $sessionValue;
session_write_close();
session_name('uniqueName2');
session_start();
$sessionValue = $_SESSION['Foo2'];
print $sessionValue;
session_write_close();
Expected result:
----------------
just 1 session cookie header for uniqueName1.
just 1 session cookie header for uniqueName2.
Actual result:
--------------
2 session cookie headers for uniqueName1, where both are exactly the
same
2 session cookie headers for uniqueName2, where both are exactly the
same
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=38104&edit=1