What is the purpose of "Get Instance" in Codeigniter? How would you explain this to a total beginner?
|
Ok, so everything in CodeIgniter runs through the super-magic Your controller is a class, so $this is there, allowing you to do In models, you are also using a class. It is slightly different here, as When you are using a helper or a library, you need to find that "instance" or
…makes That's an explanation for total beginners after 2 pints, so it's either retarded or about right. ;-) |
|||||
|
|
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 |
|||||||
|