Last Updated: February 25, 2016
·
3.596K
· mogetutu

Codeigniter Super Global Instance

Enables the use of CI super-global without having to define an extra variable.

public function __get($var)
{
   return get_instance()->$var;
}

Instead of

$this->_ci = & get_instance();
$this->_ci->load->helper('example');

You'd have

$this->load->helper('example');