JustinK101 Posted March 24, 2008 Share Posted March 24, 2008 I have a variable, $my_global_var defined that I need to use in many other files and functions. Is there a way I can reference $my_global_var without setting: global $my_global_var; In the top of every function that needs acceess it? Link to comment https://forums.phpfreaks.com/topic/97569-access-to-variable-from-functions/ Share on other sites More sharing options...
laffin Posted March 24, 2008 Share Posted March 24, 2008 u can always use the $_GLOBAL['my_global_var'] Link to comment https://forums.phpfreaks.com/topic/97569-access-to-variable-from-functions/#findComment-499213 Share on other sites More sharing options...
JustinK101 Posted March 24, 2008 Author Share Posted March 24, 2008 Well that's even worse. Sorry I didnt explain $my_global_var is acutall a class instance variable. So I do: $my_global_var->get_property1(); $my_global_var->get_property2(); $my_global_var->get_property3(); etc, etc, etc. I just need $my_global_var class instance to exist in all functions with explicty setting it to global. Link to comment https://forums.phpfreaks.com/topic/97569-access-to-variable-from-functions/#findComment-499214 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.