vote up 70 vote down star
61

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

59 Answers

1 2 next
vote up 29 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 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

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 1 vote down

My best experience comes from using Akelos. Until PHP 5.3/6, the lack of late static binding makes PHP frameworks a little frail, but Akelos manages to actually be a lot more OO than most. It also has a nice view syntax (sintags).

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 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 33 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 1 more comment
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 1 vote down

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

link|flag
vote up 32 vote down

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

link|flag
1  
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 at 0:07
show 1 more comment
vote up 0 vote down

I know it's not a "framework" per se, but I've often used Wordpress as a starting platform for when I've need to get a site off the ground quickly and when the people adding content to the site need something dead simple to navigate.

I basically strip out the "posts" and comments portion of a template so that it's no longer accessible and then everything on the site is done with "Pages". And if the user can be a little too curious, I'll remove the unneeded options from the Admin pages as well.

The other great thing about it is that, unlike Joomla or Drupal, there are massive amounts of free extensions and templates to work with, so I can almost always get something running without every having to write very much code at all.

link|flag
show 1 more comment
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 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
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 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 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 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 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 14 vote down

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

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 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 0 vote down

@Karl.. You're totally right. Our in-house framework is littered with calls to the debug_backtrace() function precisely because of the lack of late static binding.

link|flag
vote up -1 vote down

Here is a FANTASTIC article on PHP Framework benchmarks.

Cliffsnotes:

Solar is the fastest of those tested.

Symfony the slowest.

Zend is the most loosely coupled and thus the most flexible.

link|flag
show 2 more comments
vote up 1 vote down

At the moment I am using cakephp and typo3 lib/div (if you can call that a framework).

But I am getting a bit fed up with both of these, mostly because of a lack in documentation and community support.

The reason why I chose cakephp in the first place was the support for php 4, but now we have completely switched to php 5.

At the moment I am looking at symfony for websites which don't need an cms and SilverStripe for websites which need a little bit of customization.

Both seem to have much better documentation and community support. I also like their models a lot more than the monster associative arrays of cakephp.

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 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 0 vote down

(bah where did my post go?)

You should use CakePHP because it's going to be the fastest, easiest and funnest build you ever made.

Since there is a few people that mention the zend framework, it should be said that you can have your cake and eat it to. That's right, you can use the zend libraries as vendors in cake with little issues. In fact many people claim that while cake is a true framework, zend is just a set of libraries. Let's not get into that discussiom, but my vote is definitivly Cake.

Happy baking.

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
1 2 next

Your Answer

Get an OpenID
or

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