php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #7772 Problems with session vars
Submitted: 2000-11-12 20:28 UTC Modified: 2001-03-16 17:32 UTC
From: jkohen at tough dot com Assigned:
Status: Closed Package: Session related
PHP Version: 4.0.3pl1 OS: Linux
Private report: No CVE-ID: None
 [2000-11-12 20:28 UTC] jkohen at tough dot com
Apache/1.3.14 (Unix) PHP/4.0.3pl1
# "If both track_vars and register_globals are enabled, then the globals variables and the $HTTP_SESSION_VARS entries will reference the same value." - PHP Manual.
# In the next example $HTTP_SESSION_VARS[xyzzy] can only be read, if it's written, the new value is lost, it doesn't get saved through requests.
# Besides that, setting $xyzzy to something isn't reflected in its $HTTP_SESSION_VARS counterpart until the next request.

session_register("xyzzy");
$HTTP_SESSION_VARS[xyzzy] = 'nothing';
$xyzzy = 'something';
# Here, $HTTP_SESSION_VARS[xyzzy] is equal to 'nothing'.
$HTTP_SESSION_VARS[xyzzy] = 'somethingelse';
# Here, $HTTP_SESSION_VARS[xyzzy] is equal to 'somethingelse'.

# At the next request, $HTTP_SESSION_VARS[xyzzy] will be equal to 'something'.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-03-16 17:32 UTC] sas@php.net
The paragraph you quote only refers to the time of reinstantiating variables.  Registering a session variable does not cause $HTTP_SESSION_VARS["foo"] and $foo to become associated in any way.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 20:01:29 2024 UTC