Removing $this-> from codeigniter 3+ |
$this is a pseudo-variable referencing the current object instance ... right out of the PHP manual.
"$this->foo()" is asking for the "foo" method of the current object, while "foo()" is asking for a function "foo" outside of a class.
James Parry
Project Lead |
Welcome Guest, Not a member yet? Register Sign In |