When I load the hook in codeigniter, hook successfully load but superobject not.
public function __construct() {
$this->CI =& get_instance();
// This gives me nothing
print_r($this->CI);
// This works fine
echo "Hello!";
}
codeigniter version :3.1.0
Any idea?