Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the purpose of "Get Instance" in Codeigniter? How would you explain this to a total beginner?

share|improve this question

2 Answers

up vote 22 down vote accepted

Ok, so everything in CodeIgniter runs through the super-magic $this variable. This only works for classes, as $this basically defines the current class.

Your controller is a class, so $this is there, allowing you to do $this->load->model('whatever');

In models, you are also using a class. It is slightly different here, as $this only contains useful stuff as you are extending from Model. Still, $this is still valid.

When you are using a helper or a library, you need to find that "instance" or $this equivalent.

$ci =& get_instance();

…makes $ci contain the exact same stuff/code/usefulness as $this, even though you are not in a class, or not in a class that inherits it.

That's an explanation for total beginners after 2 pints, so it's either retarded or about right. ;-)

share|improve this answer
2 pints, eh? Then what is the usefullness of a library/helper? Why not just use models? – Kevin Brown May 12 '10 at 14:38
Of course seeing as everything is a PHP class you CAN put whatever you like wherever you like. Generally speaking in CodeIgniter it is broken down as "database interaction/business logic" = models, simple functions go in helpers and general classes are libraries. – Phil Sturgeon May 13 '10 at 8:07

It's an implementation of the singleton pattern. Essentially, there is only one instance of the class in question, which is designed to be accessible globally. The get_instance method is static and so provides a way of accessing the instance from anywhere in your code.

share|improve this answer
Not noobish enough. I'm a SUPER NOOB! :) – Kevin Brown May 12 '10 at 14:37
@Kevin: In that case I recommend you start reading about object-oriented programming (OOP) before delving into a framework that relies upon it! – Will Vousden May 12 '10 at 15:09
Will do, Will!! – Kevin Brown May 12 '10 at 15:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.