There are quite a few PHP frameworks out there, from CodeIgniter to Zend to CakePHP to symfony.. which do you think is the best? I'd prefer answers that say why, rather than just which. Which features make your preferred framework stand out as the best?
|
1
|
|
|
|
|
|
This is always going to be a tricky question. To get the most out of a full-stack framework you are going to invest hours learning its idiosyncrasies. Any framework can make a quick blog example app very easily (or whatever they provide tutorials for), it's only when you use it in the real world that you find out it's wrinkles. A good framework shows its worth when it starts fighting you. How easily can you adapt to its way, or vice versa. The list above has included two main flavours of framework: Convention over Configuration and vice versa CakePHP vs Zend Framework are good examples of these respectively. My own experience has been with CakePHP and Zend, though I looked very hard at CodeIgniter before picking CakePHP initially. Zend - Pros
Zend - Against
CakePHP - Pros
CakePHP - Cons
In summary we build most of our larger apps in CakePHP, but right there in the vendors folder as an svn:external we load in Zend Framework for use in lots of places. OK, the codebase before we start is a little on the meaty side, but what the hey, disk space is cheap. I hope that helps somebody, as I really have to get back to that controller I was writing... |
||
|
|
|
|
Symfony is definitely my favourite. It almost gives you everything RoR has without learning a new language or trying to figure out how to keep your deployment stable and repeatable. The Javascript integrations are very good and there seems to be quite an active community around it re: plugins and patches for when you want or need to go off the rails. The API also stays very stable with continued support for older (now 1.0) releases, but with a very nicely documented upgrade path for when you have a week available. On the other hand, database migrations are a bit hit-and-miss; hopefully this will change soon. |
||
|
|
|
|
Frameworks like Cake are sometimes far too bloated for an application. The feature set is overkill for a small app, and they're entirely too inefficient for an app that gets a lot of traffic. I prefer to write my own. MVC is not a complicated design pattern; it's pretty easy to write your own and add features as you need them. That way, there's no "magic" going on behind the scenes you don't know about. |
||
|
|
|
|
if you want a very simple and some what of a light weight MVC, with distinct code separating, plenty of documentation, (including video tutorials -- these great to start you off) and slue of built in function and foundation code to make for fast application development, i suggest Code Igniter. as well, it has a wonderful forum with a big community for any help and discussions about implementation and mvc architecture, etc. if you really want to know if you'll like Code Igniter just watch one of the video tutorials |
||
|
|
|
|
I like Symfony for the following reasons
I could probably go on and on, but I'll stop there for now =) |
|||
|
|
|
|
I've played around with Cake, Symfony, and the Zend Framework, and ZF appealed to me the most. Easy to implement, and the fact that it's backed by Zend at least provides me the illusion of safety I need to stick with it without worrying it's going to disappear any time soon. ;-) It has its drawbacks, though -- like most frameworks, it's starting to suffer from "let's make it do everything" instead of "let's keep it simple and let people build their own solutions on top of it." But, to each their own... |
||
|
|
|
|
I may be a bit subjective here, since I only tried 2 of those: CakePHP and Zend Framework. From my experience, CakePHP is the one to pick if you want a full MVC and ActiveRecord experience. CakePHP has a very sound implementation of both and is considered a full stack framework. On the other hand you have the Zend Framework, a glue framework, that already has MVC implemented in a good manner but is lacking a way to access the Database like CakePHP. It has a set of classes to deal with DB and Table access, but not in a manner one can say it's ActiveRecord. Because it is a glue framework you can add to it with any good ActiveRecord set of tools. Propel and Doctrine come of mind. In the end it's the programmers choice. One has to feel comfortable with the tool we are using and it also has to be the "Right One For The Job"™ Sorry I can't talk about the rest of them, but I never used them to have any insight. |
||
|
|
|
I evaluate technology in two ways: How fast does it take me to say "Hello World"? How fast can I iterate through a refactor? It's really hard for me to recommend a PHP framework. I am about to deploy a project using symfony. This project is about a month late because the documentation was not accurate, and my blog ended up being an authoritative source for certain types of functionality. I looked at Code Igniter and although it lacks the sort of ORM, I got Hello World going in less than 5 minutes, and iterated through refactoring code pretty quickly. The documentation is spot on. |
||
|
|
|
|
My personal preference is PRADO. They've taken a lot of the good ideas from ASP.NET and left a stack of the bad ones behind. Unlike ASP.NET though, when you hit one of those ridiculous problems that could so easily be solved by overriding something in a base ASP.NET class if only MS didn't seal the class or protect the method, you can actually get your hands dirty hacking on the framework code. There is a good image illustrating the separation of the view and the controller at the old PRADO website:
It ships with a truckload of controls out of the box: Standard ControlsAll of the regular form controls like text boxes, drop downs etc are represented, along with TDatePicker, TCaptcha, THtmlArea (a full html editor using TinyMCE), among others. Validation ControlsSimilar to ASP.NET's validators, PRADO supports validator components and validation summaries. Validators also support client side operations, and all of the included validators come with client side support (except TCustomValidator, but there's TActiveCustomValidator for that). The following snippet demonstrates two of the validators and how they are added to a page. The TValidationSummary component will display the contents of the ErrorMessage properties:
List and Data ControlsList and Data controls are provided to allow you to bind arrays of objects, straight arrays or internal PRADO List classes (TList, TMap) to controls. PRADO supplies a TRepeater for simple template looping, TDataGrid for building sortable, pageable tables, as well as TRadioButtonList, TCheckBoxList and TDropDownList for simplifying form creation. AJAX ControlsI've only just started to get my hands dirty with these, but there are loads of AJAX-based ActiveControls that ship out of the box with PRADO like TAutoComplete, TActivePanel (a div you can show or hide or populate on a javascript callback), T(Event|Value|Time)TriggeredCallback, etc, as well as high quality community contributions like XActiveDataGrid PRADO also has very good documentation. The quickstart and blog tutorial are excellent resources (although there are a few pages here and there in the quickstart that are missing). The community has yet to really get the Wiki going full-steam, but the API reference is superb and the downloadable distribution comes with a .chm file which has since become indispensable to me. The forum is very newcomer-friendly and I have almost always received a response within hours. |
||
|
|
|
|
It depends on the scale of the project. For basic development, I usually just code my own. For larger projects, I've tried a few different solutions:
|
|||
|
|
|
|
I have been using Symfony for the past 18 months, and while it is everything people say, there are some things to be aware of.
All that said, I'd probably choose it again if I were doing another PHP project. But I prefer RoR if possible for new dev. |
||
|
|
|
|
When I do MVC-style development, I just use my own brand of framework coupled with Smarty. I find it easily the best template engine for PHP, and it makes for a very clean MVC framework. Alex |
||
|
|
|
|
Zend Framework |
||
|
|
|
|
I personally haven't used it for a live app, but heard good things about Symfony. |
||
|
|
|
|
I prefer CodeIgniter myself, additionally the following may be of use: PHP MVC Frameworks and PHP Zone |
||
|
|
|
|
I've been using Code Igniter as well. There may not be nearly as much free code flying around like on Cake, so as long as you don't mind a ground-up application, CI is the way to go. CI also has a great forum (Cake didn't for a long time), and the contributors are great people. Zend Frameworks I've only skimmed the API on (though they make a great dev IDE), but have not played around with it. Zend also offers the PHP accelerator for Apache, and the encryption library to prevent modifications (easily) to your code. |
||
|
|
|
|
I don't agree fully that cakephp is slow, but by supporting php4 they have to be slower. I really like the "convention over configuration" bit in cakephp. ZendFramework is definitely not convention over configuration, as you have to do quite a lot of it just to get going. Zend does not have ORM so you can not say a "post has many comments", and you have to do your own sql. But zend is powerful, it is huge But cake is simple, as far as it goes, I totally recommend it, my buddy at work really loves zend, and I can use both so no complaints here. |
||
|
|
|
|
Code Igniter is good but rather light-weight as others have stated. Specifically, with CI if you want to do something that is not baked in it can be a bit more work than you might expect (for example, if you need an access control system [admin, editor, user] you must either roll your own or use a thrid party supported one). Zend Framework is great but is much more of a heavy weight contender. You really need to understand object oriented programming and MVC to use it. |
||
|
|
|
|
Code Igniter is great, but doesn't take advantage of any PHP 5 features, such as auto-class loading, better security, better performance, and better overall OOP support. If you want the simplicity of Code Igniter that includes PHP 5 features, go with Kohana, which was originally a fork of Code Igniter that eventually became its own separate entity. |
||
|
|
|
|
Antares Project is a cool MVC for PHP5. It's definitely still young, but promises to make a mark with php6. |
||
|
|
|
|
I started using CodeIgniter couple of months ago. It's not a full-blown framework like Zend or Symphony by any means, but it provides a way of getting off the ground quickly. The best of about CodeIgniter is that there is no significant learning curve like other frameworks. |
||
|
|

