Edit report at https://bugs.php.net/bug.php?id=54383&edit=1
ID: 54383 Comment by: arraypad at gmail dot com Reported by: tyra3l at gmail dot com Summary: extend the usage of session_encode/session_decode Status: Open Type: Feature/Change Request Package: Session related PHP Version: 5.3.6 Block user comment: N Private report: N New Comment: The problem with this is that we currently expect the (possibly custom) serializer to work directly on the $_SESSION array. Changing this would be a big BC break in the session API. Previous Comments: ------------------------------------------------------------------------ [2011-03-25 16:16:33] tyra3l at gmail dot com Description: ------------ I always wondered about the rationale about the session_encode/decode in it's current form, but Chris Shiflett's blogpost made me to open this bugreport: http://shiflett.org/blog/2011/mar/php-session-debugging I would propose two changes: - add a new optional array argument for session_encode, if it is passed, then encode that instead of the $_SESSION array. - add a new optional boolean argument for session_decode, if that sets to true (default is false), then the decoded session array is returned instead of inserted to $_SESSION obviously the documentation about the return variable for session_decode should also be updated to reflect this change. this should be backward compatible change, but it would allow us to encode/decode an arbitary serialized session without the need to save and reload the contents of the current $_SESSION array. ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=54383&edit=1