vote up 70 vote down star
63

Over the course of your web development experience, what PHP framework(s) have you worked with? What strengths and weaknesses have you observed in those frameworks? Considering these, what framework would you recommend if beginning a new application?

flag
show 2 more comments

61 Answers

1 2 3 next
vote up 30 vote down check

Well, we've been using Zend Framework on a private project for a few months, and it's been pretty painful. We also use it at work, and it's pretty painful there too. It's one to consider if you're starting on a project, but it's not stable and probably won't be for some time to come. I think Zend have managed it pretty badly; at one crucial point the docs were version 1.5 but the current version was still 1.0 and I wasted a lot of time trying to get it to do what it said it did in the docs.

The MVC is implemented in an OK fashion, but the absence of good tutorials was a terrible drawback when we were learning it back in Spring 2008. I believe most of any application should be in the model, and in ZF at the time this was given no coverage whatsoever.

I think it will need another year to be stable enough to live with, and I think it will probably become something of a standard once they've gotten it a bit more mature. Although it's from Zend, it's very much an ad-hoc community project with not enough centralised control, as far as I can see. And for the last year or so I'd say it's suffered as a result. I really wish we hadn't used it on the private project. At work, it's more of a long term thing and so it will probably pay off eventually.

The good thing about ZF is that you don't need to use the whole thing - for instance, you can start using the RSS functions or any other module with an existing application perfectly happily. You can use the MVC stuff or not. That flexibility is very valuable. The question is again whether the quality of the individual bits is there yet; my colleague really struggled with their ACL architecture, for example, but the RSS stuff is fine.

I've been pretty impressed with what I've seen of CakePHP, but haven't used it. I would probably give it a go on a new project; it's based on similar principles to Rails and has some nice design principles.

link|flag
1  
I'm pretty impressed that you did not manage to find any good tutorials. There are tons and tons. – Till Sep 21 '08 at 14:00
show 4 more comments
vote up 35 vote down

I have used Code Igniter and it is a very slick and lean MVC framework. It is definitely a great option if you are building a custom application. Basically most of the plumbing and redundant work is ready for you to use, and you can concentrate on the look and feel along with the business logic. It does have a bit of a learning curve (similar to CakePHP), however.

You might want to first quickly test out Drupal, or Joomla (among others) that offer a fully setup and ready with little customization IF they have what you need. These giant frameworks are tough to customize, and they are mainly setup for Content Management applications.

link|flag
3  
I would argue codeigniter has far less of a learning curve than most other PHP frameworks I tried - it didn't enforce much on you, once you get over the URL -> a class, then a function named "index", it's quite simple, and more "PHPy" than I found other frameworks (that tried to be Ruby on Rails) – dbr Oct 20 '08 at 8:04
4  
You can also look at Kohana, a rebuild of CI. It manages some things slight different to CI. – Ikke Jan 3 '09 at 14:05
1  
Codeigniter's documentation is top notch. It makes learning and building with CI a joy. – Cory House May 13 at 13:19
show 2 more comments
vote up 33 vote down

Kohana is similar to Code Igniter but is a PHP 5 only framework so its a bit cleaner to use.

link|flag
2  
Requirements say it needs PHP version >= 5.2.3. This isn't a very good idea. The last stable release of Debian only has 5.2.0. – stesch Jan 18 '09 at 0:07
show 1 more comment
vote up 23 vote down

Surprised no one has suggested symfony yet. It's quite mature and has a large developer community, lots of plugins, etc. It's also starting to get used by the likes of Yahoo!.

link|flag
show 1 more comment
vote up 21 vote down

CakePHP has been my top choice for a while now. It's very simple to get started with, and allows for rapid development, following a similar model to Ruby on Rails.

link|flag
show 1 more comment
vote up 14 vote down

I'm very hesitant when it comes to using existing frameworks, because all frameworks that I checked use tons and tons of includes and you don't have control over which include is done when. The problem with that is, that includes are processes on your hard disk, i.e. they are slow - so you should try to have as few as possible.

Just looking at the MVC implementation in Zend gives me a headache. So you include "Zend/Controller/Front.php" and "Zend/Controller/Action.php". Not too bad so far. Hovever "Front.php" includes another 8 files and "Action.php" includes another 2 (plus 3 that are already in Front.php, so they don't really count). To make it short: You end up with about 20 includes before the application even started - and only using MVC. This number will still go up when you decide to use Zend_Db or anything else. Even if you use an opcode cache the system still needs to check if those files have been updated since when they have been cached...

Ergo:

  • If I HAVE to use an existing, well known framework, I'd choose ZEND or CodeIgniter
  • Otherwise I prefer to use my own MVC framework, which is a lot slimmer.
  • There usually are very good specialized "stand alone librarys" for almost every functionality included in Frameworks (Mailer, RSS, ...). In most cases they are even much better in what they do than the "general" framework implementations.
link|flag
4  
Actually, if you're using APC as an opcode cache, in production you should concider setting apc.stat to 0, which will prevent it from checking for updates to the files. If you update files, you can use apc_clear_cache() to flush out file caches. – Rexxars Oct 21 '08 at 7:30
2  
And use absolute paths, so no stat calls are made. – Itay Moav Feb 22 at 4:59
show 2 more comments
vote up 14 vote down

Symfony. Excellent documentation. Excellent Design. Tons of features.

link|flag
vote up 10 vote down

If it's php... It's got to be CodeIgniter!

It's lightweight, Fast, and so easy to pick up and run with. It has great documentation! All of this pales in comparison to the amazing community that has formed around CI. I have never seen attitude on their forums (and I have posted some dumb questions). Not only are they nice but they has some very bright people writing and using CI.

If I have a choice I go with Ruby on Rails.

link|flag
vote up 9 vote down

Zend Framework is my choice for MVC-based applications. It doesn't force you to use any specific setup for your application but gives you guidelines that are easy to work with. Zend Framework also is an 'at-will' framework so if you don't want to use everything you don't have to.

I did a full write-up here on why I really enjoy using it.

link|flag
vote up 6 vote down

I've used Zend Framework with much success over the last 6 months, I have only worked with the 1.5.* line, so I haven't experienced any of the negatives brought up by @Flubba. I enjoy using Zend for several reasons:

  1. MVC right out of the box, create the document structure and the bootstrap file and you're pretty much good to go.

  2. A very robust library, a whole slew of classes have been created to provide an OO interface for most of the commonly used functions in PHP.

  3. Why use Zend Framework?

link|flag
vote up 6 vote down

I recently build a complete admin interface for a shopping system with CakePHP in under three days, it was amazing. If your project is right up Cakes alley it's a dream to work with. Takes a while to get used to though, I tore my hair out for two weeks* on the first project I used Cake for before starting to get the hang of it.

*) Back in 1.1 days when documentation was sparse, the situation now is a lot better I think.

link|flag
vote up 5 vote down

CakePHP as well as being a wonderful MVC framework has a wonderful console. You can write scripts for cron to run or even interactive scripts for users to run in the command line that can use any model or controller you app can. You don't have to do any kludging of having a cron.php tied to a scheduled wget, or shafting the first person to visit your site after midnight with a long background process.

I've used it to generate thumbnails on large images, clean up the db, archive old items, and expire things that need expiring. It's simple and fits with the mvc cleanly. Though I might call this feature model/console/controller.

link|flag
vote up 5 vote down

I've used CakePHP and QCodo for my PHP development. I've also evaluated CodeIgniter. All three have their strengths and weaknesses.

If you're a beginner to programming, then I'd recommend CodeIgniter. In my evaluation, I was pleased with their user community. I read several testimonials of beginning developers who were able to rapidly learn the framework. I'm not a big fan of CodeIgniter's data access layer. It is much better than writing raw SQL, but it lacks the simplicity of the ActiveRecord pattern IMO. On the plus side, CodeIgniter has a much smaller footprint than CakePhp. If performance is a concern, that should be taken into consideration.

If you're at all familiar with Rails, then CakePHP should be any easy win since Cake was actually started as a php version of Rails, but has since moved down it's own path. It has out-of-the-box active-record like ORM and basic code generations for your data models. The drawback of Cake is that it's documentation is lacking, and the amount of features crammed in can be overwhelming, especially at first.

QCodo is an event-driven framework that excels at code generation/scaffolding. If you are familiar with ASP.net webforms, windows forms development, or swing development, you'll catch on to QCodo's event-driven structure. Also, if your site is more of an internal use site and/or you want to have lots of auto generated forms and grids, then QCodo is the answer. However, it is probably the toughest when it comes to customizing the look and feel of your website due to the reliance on that code generation.

link|flag
vote up 5 vote down

My only experience is with CodeIgniter and it's fork, Kohana, I think that's how it's called. I'm happy with the way those function. However, depending on the application, a framework might become an overkill and it might just be better to use PHP and PEAR libraries without any fancy frameworks.

link|flag
vote up 4 vote down

CakePHP if we are going to make anything more than a simple website. It's MVC architecture alone makes it a good choice.

Zend is a good second option because all the built-in libraries.

link|flag
vote up 4 vote down

@Flubba there are several good Zend Framework tutorials and there are also several Zend Framework books due to be released soon.

link|flag
vote up 4 vote down

Depending on whether your need a heavyweight solution or a lightweight tool, you might check out CoughPHP (and ORM framework for your model) and LightVC (for your view/controller framework).

link|flag
vote up 4 vote down

As a follow-up to Flubba, I just wanted to point out that the Zend Framework has matured a lot since 1.5/1.0 (Docs and Framework itself), the current version is 1.8.1 and is an absolute blast to work with. I was able to get version 1.8.1 up and running within minutes and had a project going with the template I wanted and the various bits and pieces within the first day. The second day I started playing with Zend_Form to create new forms and to have them output as well as using the validators to make sure we got valid data and then using Zend_Mail to send emails with attachments to satisfy project goals.

Had I instead done this all by hand using standard PHP it would have taken me much longer, and would have made it harder to keep up with the changing and moving goals for the project (my boss keeps wanting new things after seeing how fast I added what he previously wanted).

There are also plenty of tutorials out there now using Zend Framework and showing the various powerful features, the Zend Frameowrk Quickstart is a fairly good starting point, it is the one I used to get started, from there reading the documentation is fairly easy.

The documentation is easy to follow, contains many concrete examples on how to accomplish various tasks, but at the same time there is a lot of flexibility in how to use the various components and that choice is left up to the programmer.

Tutorials:
Rob Allen: Tutorial: Getting Started with the Zend Framework 1.8
Maugrim The Reaper's Blog: Example Zend Framework Blog Application Tutorial: Parts 1-8 Revisited

Starters:
Damien Mathieu: A skeleton to build a Zend Framework application as DRY as possible

Zend Framework has come a long way from the previous versions, you are still able to pick and choose from most of the available "classes" and use them stand-alone but it is becoming a very viable framework to start off development with on new projects. It is becoming a full featured web framework that can stand up next to Cake PHP, Symfony, CodeIgniter and the many others that exist!

Zend Framework, while still one of the younger frameworks for PHP out there has some awesome potential, it is quick moving and bug fixes are being put into the framework almost daily. I recently had an issue with how modules were being bootstrapped and after reading through the bug reports I noticed that they had released a new version that day to fix those exact bugs I had been seeing!

link|flag
vote up 4 vote down

I think it depends on the kind of application you want to produce... As far as I am concerned, I prefer to deal with low level api such as TinyButStrong template engine.

Does anyone knows a place where frameworks are compared and where their weaknesses are detailed?

link|flag
show 1 more comment
vote up 4 vote down

If you want something that is consistent, well written, has strong conceptual integrity and has no external dependencies, you should try Solar. It's very clean, simple and easy to extend.

One of the main reasons why I love it so much is that it allows me to re-use almost everything I write, from templates to complete applications.

link|flag
vote up 3 vote down

I've really never felt comfortable with CakePHP or similar tools. I really like Qcodo. It feels nice and clean and building the "gui" seems more like building the interface in Delphi or Visual Studio.

link|flag
vote up 3 vote down

Do you have to absolutely use a PHP-based framework? If not, consider Ruby on Rails in your analsysis. My team has decided that any future work will be on Rails since our current ORM is homebaked and sucks extremely bad. We were thinking of using symfony otherwise.

Good luck,

beaudetious

link|flag
vote up 3 vote down

I think Symfony is an excellent choice. It has EXCELLENT documentation and is very intutive to learn. Built-in AJAX helpers, among many other helpful libraries make it easy to build a feature-rich web application QUICKLY.

Check out the Askeet! tutorial to see how you can build a Stackoverflow-like application in 24 1-hour lessons.

link|flag
vote up 3 vote down

Symfony is a excellent framework, but it is a bit complex and quite deep. If you want something basic and simple take a look at Code Igniter http://codeigniter.com

link|flag
vote up 3 vote down

I think you're going to find that most people prefer the environment they work in most frequently. All of the major frameworks have something to recommend them otherwise they probably would have fallen by the wayside.

I'd recommend Drupal (it being what I'm used to) for the mass of contributed modules and out-of-the-box functionality. Drupal makes a lot of useful tasks easy that should be able to give you a site without a great deal of development effort. CakePHP is a decent choice as well if you are building from scratch, but I'm a fan of Drupal's modular architecture and built in functionality. I'd recommend against Joomla as a developer because I don't particularly care for their separation of code and display (or lack thereof in many cases) and the relative complexity of certain tasks-meaningful clean urls-compared with Drupal.

I'd also recommend against combining the frameworks for the most part because your PHP process can grow out of hand making it harder for you to handle a decent traffic load.

In the end, the choice is going to come down to preference, and I'd at least taste a couple before settling on a final choice. Figure out what seems right to you, learn the conventions and paradigms of the framework and stick to them, and you'll probably be happy.

link|flag
vote up 3 vote down

I'll put in another vote for Zend Framework. I have been using it for about 6 months and have been very happy with the way it all fits together. My biggest issues has been the lack of clear cut instructions and resources but given time and this should be sorted out.

link|flag
vote up 3 vote down

Read some comparisons by others:

Personally, I've only ever used CodeIgniter and Zend Framework. CodeIgniter I quit with after 2-3 days because I wasn't pleased. Zend Framework I have been pleasantly surprised with so far. Although, it did take a little code digging to finally get it to all fit together the way I wanted. All of the flexibility of ZF really hinders a newcomer.

link|flag
vote up 2 vote down

It would depend on the requirements of the application, of course. But I think the answer you are looking for is...CakePHP. I love it. I get my work done in 1/4th the time, I end up writing less code, and the code that I do write is better organized and more manageable. Also the documentation and support in the IRC channel is top notch.

Zend has been trying to sell me their technology for 10 years now, and it still hasn't caught on...

Symfony is supposed to be good, but I haven't checked it out.

CodeIgniter does not have all the features of CakePHP. It is faster than CakePHP in tests, but I'd rather just build my applications to scale linearly and throw more servers at it than spend my time writing code.

Drupal is a CMS, not an application framework. If you try to develop an application with Drupal, prepare for pain.

link|flag
vote up 1 vote down

I used cakephp recently. Its easy to learn and you can develop apps fast.

link|flag
vote up 1 vote down

@Flubba there are several good Zend Framework tutorials and there are also several Zend Framework books due to be released soon.

Getting Started with Zend Framework 1.5

ZF Tutorials

Thanks for the links! The first one (the akrabat tutorial) was for a long time the only half-decent tutorial on ZF MVC, and it's better now that it's been updated for 1.5. My comments need to be taken in the context of my experiences from January to June 2008, and you are quite right, as the framework becomes more stable there should be much better resources to come.

My main criticism of the akrabat tutorial is still that he puts too much application logic into the controller, and so it is not teaching proper MVC design principles, in my opinion. I hold to the thin controller school of thought where all the business logic should be in the model, not just data access classes.

The second resource looks neat - thanks for that, it should be helpful. As I said we use ZF at work and so it is part of my life now, regardless of my somewhat mixed experience of it.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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