How to avoid repeatedly use the new statement to instantiate a class? [closed]
The way you’ve done it above should work. Once a variable is declared in global scope, it should be globally available (of course, your functions still need to declare it as a global: global $x;). You could also use the $GLOBALS superglobal variable: global $x; $x->var; is the same as $GLOBALS[‘x’]->var; I personally would use … Read more