Welcome Guest, Not a member yet? Register   Sign In
Who can give me a answer about CI model
#4

[eluser]Phil Sturgeon[/eluser]
thesnake: CodeIgniter supports the singleton pattern for models. If you would like to use something different either manually include your own libraries or use $this->load->model() to have the file included then do:

Code:
$this->load->model('test');
$first = new Test(1);
$second = new Test(12);

Remember that this is just PHP, so the intended documented ways of doing things are just suggestions.


Messages In This Thread
Who can give me a answer about CI model - by El Forum - 03-02-2011, 01:16 AM
Who can give me a answer about CI model - by El Forum - 03-02-2011, 02:20 AM
Who can give me a answer about CI model - by El Forum - 03-02-2011, 02:40 AM
Who can give me a answer about CI model - by El Forum - 03-02-2011, 04:18 AM
Who can give me a answer about CI model - by El Forum - 03-02-2011, 07:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB