Welcome Guest, Not a member yet? Register   Sign In
when will they release code igniter in php5?
#7

[eluser]GSV Sleeper Service[/eluser]
There's nothing stopping you using php 5 specific stuff in a codeigniter project.
The only real downside of CI's php 4 compatibility is the awkward loading of libraries/models etc eg
Code:
//php 4/CI way
...
$this->load->library('mylib');
$this->mylib->mymethod(); // this just seems awkward to me, my IDE gets confused at this point.

//php 5
...
$mylib = new mylib();
$mylib->mymethod(); // much better, my IDE provides autocomplete etc
I fully understand why Ellis Labs went down the php 4 compatibility route, there are a LOT of hosting companies out there that are still running php 4


Messages In This Thread
when will they release code igniter in php5? - by El Forum - 01-26-2010, 05:43 PM
when will they release code igniter in php5? - by El Forum - 01-26-2010, 06:08 PM
when will they release code igniter in php5? - by El Forum - 01-26-2010, 06:11 PM
when will they release code igniter in php5? - by El Forum - 01-26-2010, 06:14 PM
when will they release code igniter in php5? - by El Forum - 01-26-2010, 06:22 PM
when will they release code igniter in php5? - by El Forum - 01-26-2010, 06:47 PM
when will they release code igniter in php5? - by El Forum - 01-27-2010, 04:23 AM
when will they release code igniter in php5? - by El Forum - 01-27-2010, 05:08 AM
when will they release code igniter in php5? - by El Forum - 01-27-2010, 06:05 AM
when will they release code igniter in php5? - by El Forum - 01-27-2010, 06:30 AM
when will they release code igniter in php5? - by El Forum - 01-27-2010, 06:33 AM
when will they release code igniter in php5? - by El Forum - 01-27-2010, 08:32 AM
when will they release code igniter in php5? - by El Forum - 01-27-2010, 09:22 AM



Theme © iAndrew 2016 - Forum software by © MyBB