explain $CI =& get_instance();
Looking through codeigniter's source code,
in its helper functions I keep seeing code
$CI =& get_instance();
can anyone please explain to me how this code works?
I get that it is returning a reference to the $CI super object, but where does get_instance()
come from?