|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-18 10:11 UTC] kalowsky@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 01:00:01 2025 UTC |
PHP 4.04 to 4.05 upgrade introduced new problems in PHPLIB. In page.inc, there is a function like this: function page_close() { global $sess, $user; if (isset($sess)) { $sess->freeze(); } if (isset($user)) { $user->freeze(); } } The intent is that if the $user or $sess classes were never set, then it would not try to call the freze method. However, in 4.05, the "global" statement cause the "isset" statement to return "true" just by declaring them global. I read from the other bug reports that this is kind of a "feature" where the global simply creates a "reference" to the $GLOBALS. But then, how do we recode? The only solution I found is this: function page_close() { if (in_array("sess",array_keys($GLOBALS))) global $sess; if (in_array("user",array_keys($GLOBALS))) global $user; if (isset($sess)) { $sess->freeze(); } if (isset($user)) { $user->freeze(); } } This is kind of messy! Is there any other way? Or can "global" be changed so that it only creates the reference if the var exists? Thanks, Gary