Skip to content

Instantly share code, notes, and snippets.

@beingzoe
Created January 25, 2011 22:10
Show Gist options
  • Save beingzoe/795785 to your computer and use it in GitHub Desktop.
Save beingzoe/795785 to your computer and use it in GitHub Desktop.
class CI_Base {
private static $instance;
public function CI_Base()
{
self::$instance =& $this;
}
public static function &get_instance()
{
return self::$instance;
}
}
function &get_instance()
{
return CI_Base::get_instance();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment