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?
|
61
|
|
|
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
|
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? |
|||
|
|
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). |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
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. |
||||||||
|
|
|
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:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
I used cakephp recently. Its easy to learn and you can develop apps fast. |
|||
|
|
|
|
Kohana is similar to Code Igniter but is a PHP 5 only framework so its a bit cleaner to use. |
|||
|
|
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. |
|||
|
|
@Flubba there are several good Zend Framework tutorials and there are also several Zend Framework books due to be released soon. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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!. |
|||
|
|
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. |
|||
|
|
|
|
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:
|
||||||||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Symfony. Excellent documentation. Excellent Design. Tons of features. |
|||
|
|
|
|
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). |
|||
|
|
|
|
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. |
|||
|
|
|
|
@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. |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
(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. |
|||
|
|
|
|
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 |
|||
|
|
