From: Andreas A. (Thyrell) <a.a...@th...> - 2001-09-03 12:37:43
|
Hi All, does anyone make use of globalize feauture in the Request class? I plan to remove this if noone needs it. What it does (if enabled): If you get a variable form a HTTP_*_VARS array via the GetVar() method this variable is referenced to the global namespace. i.e.: $HTTP_GET_VARS["id"] $GLOBALS["id"] =& $HTTP_GET_VARS["id"]; In my opinion thats completely useless caus it messes up global namespace and thats what we want to prevent. What do you think? Andi |