I recently started developing an application with CodeIgniter, but shortly after I started, I began seeing more and more complaints about CI and its support for PHP4.

I began looking for alternatives, and Kohana was looking pretty decent, but the utter lack of documentation for the new version left me unable to start.

Then, with the recent release of FUEL, I decided to port my in-development application from CI to FUEL. It's now a little more developed in FUEL than it was in CI (though not by much), and before I commit for good, I'd like to get a community opinion on the best route to take.

Things I'd like/need/want help understanding:

  • Obviously, I'd like it to be built on newer technology, and CI seems to have a problem with this
  • I'm going to need comprehensive authentication
  • Documentation is certainly important
  • I'm not quite sure I understand a real-world implementation of HMVC (as opposed to MVC), so maybe somebody can tell me if I want/need it?
  • I also don't understand exactly what ActiveRecord does, but I'll certainly be interacting with databases regularly (EDIT: Thank you, cbrandolino, for explaining ActiveRecord. Apparently, I've been using it all along.)

I know that's not a complete list, but it's what comes to mind at the moment. Any opinions?

link|improve this question

feedback

5 Answers

up vote 16 down vote accepted

HMVC

HMVC put really basically is a way to have controllers call other controllers. Quite similar to making a Curl request to call a URL, this method can be used to call a controller locally. Fuel and Kohana support this natively, CodeIgniter supports it with an addon.

One common piece of confusion is that HMVC is just about modules. CI and Fuel both support the ideas of "modular MVC" and HMVC, but they are not the same thing. HMVC is calling controllers, modular MVC is shoving the same files in a slightly cleaner folder structure.

ActiveRecord

CodeIgniter has a query builder called ActiveRecord but most ActiveRecord implementations are closer to ORM.

In software engineering, the active record pattern is a design pattern found in software that stores its data in relational databases.

A query builder helps you to build your SQL quicker and with a PHP syntax, full ActiveRecord and ORM abstract away the SQL work completely.

What is the best route to take?

This is not a question that has an answer as it comes down to personal preference. The three frameworks all share a lot in common but also have a bunch of differences.

To explain, I contribute to both Fuel and CodeIgniter and have used Kohana for a few projects so I know all systems pretty well.

Fuel is coming along really well but it's PHP 5.3 so using it for distributed applications is not a good idea. Sure it's still in Beta but the IRC is always active and answers are usually pretty quick. Our documentation is pretty good but missing a few bits like ActiveRecord and Auth.

CodeIgniter is simple as hell with great documentation. I love the framework because it does nothing to mess with how I code, just let's me get on with it quicker. On the subject of PHP 4 support I see both sides. Sure you can do whatever PHP 5 work you like in your controllers, models, etc but there are a few architectural decisions made by the Core development team that were made with PHP 4 support in mind. Not a massive problem, but syntax such as:

$this->load->model('foo');
$this->foo->get(1);

really could just be:

Model::get();

or similar. Nothing major, but there are things that we could do with improving.

Kohana's documentation has come along very well from a year ago and I am actually slightly jealous. They have a smart team of developers and a very clever community, but there are certain parts that to me don't feel right or don't make a lot of sense.

Really you will only find a framework you like by trying a few options; I'm even using Rails recently. Make a few small applications in each or download some example applications. There is plenty of open source code around on GitHub for all of these frameworks so you can see how they are used in the real world and make your decision.

link|improve this answer
So with standard MVC are methods in one controller available to other controllers? Or does this require HMVC? – Peter Jan 24 '11 at 20:56
2  
Well it depends what you mean by "methods are available". Both Fuel and Kohana support the idea of extending other controllers which makes the controller methods available in a single request. HMVC is more about using Request::factory('controller/method')->execute(); to get a response. This stuff is all relatively advanced and is not something you need to worry about. HMVC can be totally ignored (and should be) until you get the hang of the rest. – Phil Sturgeon Jan 24 '11 at 21:36
This also means that you can;t have a model named foo and also a library with same name because you would need to access them both usinh $this->foo – daniels Feb 9 '11 at 13:55
daniels: Well it is the same problem if you use PHP 5 syntax. new Foo(); Is that a model or a library? You can use prefixes/suffixes or namespaces like we have done in Fuel, but people complain about having to write Model_Foo() instead of just Foo(). Can't win! – Phil Sturgeon Feb 10 '11 at 10:49
@Phil I loved using Kohana2 but now i'm having a hard time using KO3. I can't seem to get comfortable with it. The routing and request methods are confusing. What other issues did you find with KO3. I also feel the documentation is all over the place and not consistent. BTW, I just played with Fuel and it "felt" simple!! – Andres Feb 18 '11 at 16:34
show 2 more comments
feedback

Honestly, I'm getting sick of hearing about CodeIgniter and PHP4. Yes, 1.7.3 supports PHP4, thank goodness for those of us on shared hosting environments with stubborn companies. If you want CodeIgniter on PHP5, Both the official CI 2.0 and CI Reactor (Community Supported and Developed) holds a PHP5 requirement. At this point talking about CI running on PHP4 is as pointless as ranting about Mac's running on PowerPC processors.

I choose CodeIgniter at this point for a few reasons

  • Stability (2.0 is currently being used to support a commercial product (ExpressionEngine) )
  • Flexible and lean (Load the resources you need, leave the rest)
  • Documentation
  • Easy to extend and build functionality you need

FUEL is neat but is not yet a production environment in my mind. Looking forward to seeing where it goes.

UPDATE

Now that Fuel has released their first "stable" iteration, and having worked with it, I would most definitely choose it over the other options.

After working with Codeigniter for a long time I have definitely seen the shortcomings that simply come from the design philosophy around codeigniter which seems to be keep things simple and maintain a low barrier of entry. Because of this their are some more advanced features in FUEL that I have become accustom to that would prevent me from being satisfied with codeigniter alone.

link|improve this answer
5  
jondavidjohn. +1 on getting sick of the PHP4 thing :) – Thorpe Obazee Jan 23 '11 at 15:47
I love how you bold out "Documentation". Now if there was only a way to get my team members to READ the damn thing. (they gasped when I told them I read it in a night.. I mean come on its a pamphlet and a simple one at that) – Louis Oct 1 '11 at 8:48
3  
Also, +1 for your update, I agree and am much in the same boat. – Louis Oct 1 '11 at 8:49
feedback

CodeIgniter:

  • CodeIgniter has excellent documentation.
  • Stability (you can be assured that API doesn't change much with the release of a new version)
  • supports PHP4 (CI 2.0 deprecates PHP4)

Kohana 3:

  • Enough documentation
  • Excellent API
  • PHP 5 only

Fuel:

  • New, they are still in beta.
  • If you know, Kohana 2, Fuel would be real easy.

I suggest you read a lot more about the frameworks. you obviously haven't read much about any of their docs(you couldn't have missed ActiveRecord if you did).

In the end, it will be your choice. I use Yii, Kohana, CakePHP and CodeIgniter and they all have their strengths and weaknesses.

link|improve this answer
As I can see, Fuel was based on Kohana v3. Also remember about php5.3 requirement. – biakaveron Jan 23 '11 at 9:58
You can see the K2 influence. – Thorpe Obazee Jan 23 '11 at 10:35
2  
It takes a few ideas from all over the place. It's based around CodeIgniter, Kohana 2 and 3 and quite a bit of Rails in way the command line utility, tasks and migrations work. – Phil Sturgeon Jan 24 '11 at 1:02
feedback

I don't really see any problem with CI's support for PHP for. If you have a server with PHP5, you can use PHP5 functions with it.

I've been working with both Kohana and codeigniter for one year, now, and I definitely prefer the latter. Its being built on php4 does not at all influence its performance.

Coming to your points:

  • Comprehensive authentication: almost out-of-the-box with CI; hundreds of tutorials available about how to set it up;
  • Documentation: well.
  • HMVC You might want it/need in the future. Since you're starting out with frameworks, though, I guess it's better to stick to the standard MVC pattern - it's way too easy to make controllers do models' jobs in HMVC;
  • ActiveRecord is a set of very handy database-agnostic (the same calls will work if you change database/driver) methods to make db requests. Codeigniter's is fast, reliable, easy and customizable.

About FUEL: I have to admit I've only being playing with it (I've been testing almost any framework out there before deciding for CI). I like some of its "extreme" choices (everything an autoloaded class; closures) but I would wait a bit before using it in production because of:

  • Stability (it's still in beta and only one year old);
  • Community (CI's documentation is great, but it would be nothing if it wasn't for its great community provided guides/explanations);
  • Codebase (for instance, I'm creating a Facebook app with codeigniter. Even though there's still no library for the new fb API, browsing trough the source code of the old libraries helped me a lot).

So yeah, I suggest you use CI.

link|improve this answer
2  
Ahh... so I've been using ActiveRecord all along! – Peter Jan 23 '11 at 20:22
@Peter I guess so. In CI it's this one:codeigniter.com/user_guide/database/active_record.html – cbrandolino Jan 23 '11 at 20:28
3  
"Comprehensive authentication: almost out-of-the-box with CI; hundreds of tutorials available about how to costomize it" I thought there were only third-party solutions for Auth on CI? – Peter Jan 23 '11 at 22:21
1  
@Peter yes, the full-fledged authentication libraries are all 3rd party software. What I meant with "almost out of the box" is that, with CI's session->userdata and activerecord, it's very easy to set up one and the documentation abounds. I meant "set up", not "customize", sorry - I'm correcting the original answer. – cbrandolino Jan 24 '11 at 0:49
thanks for such a patient answer, cbrandolino :) – aditya menon Mar 4 '11 at 5:29
feedback

Fuel is pretty great, but it's still in beta and some classes aren't working well yet. I currently use CodeIgniter Reactor for my apps until Fuel is out of beta.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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