Is it possible to pass an object into the constructor of a PHP class, and set that object as a global variable that can be used by the rest of the functions in the class?
For example:
class test {
function __construct($arg1, $arg2, $arg3) {
global $DB, $ode, $sel;
$DB = arg1;
$ode = arg2;
$sel = $arg3;
}
function query(){
$DB->query(...);
}
}
When I try to do this, I get a “Call to a member function on a non-object” error. Is there anyway to do this? Otherwise, I have to pass the objects into each individual function directly.
Thanks!
You probably want to assign them to values on
$this.In your constructor, you’d do:
Then in your query function:
This should similarly be done with the other arguments to your constructor.
$thisin an instance context is how you reference the current instance. There’s also keywordsparent::andself::to access members of the superclass and static members of the class, respectively.