|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-04 07:11 UTC] wuxinan at stanford dot edu
[2001-05-22 21:15 UTC] sbergmann@php.net
[2001-06-12 17:19 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 15:00:01 2025 UTC |
I use binary release of 4.0.5 I turn on global_vars the following statement won't work: session_register("god"); $HTTP_SESSION_VARS["god"] = true; instead, I have to use $god=true; however, if I have assigned true to $god via the statement "$god=true", I can access $god via $HTTP_SESSION_VARS["god"]. This means, $HTTP_SESSION_VARS[] can only work as a right-value.