vote up 8 vote down star
4

Okay, before I start this, I am well aware of how subjective this question is.

For my case, I'd like to define the 'best' for me as:

  • Rapid development
  • "Pretty" URLs
  • Data validation
  • Good knowledge base available
  • Not impossible to integrate other PHP software with

This is a pretty generic definition, but all I'm looking for here is opinions.

Edited: Here's a better way to ask this question:

You have two weeks to create a full scale booking and scheduling system that accepts Google Checkout payments (via the API) and integrates with an open source message board software.

Which framework do you choose and why?

flag

78% accept rate
Given your edit, you find a different gig ;) – Alan Storm Nov 2 '08 at 19:41
I would add the subjetive tag. this is always like this...I like Zend FW maybe others no – Gabriel Sosa Jun 25 at 17:32
if you are experienced you should know – presario Oct 7 at 7:17

21 Answers

vote up 18 vote down check

Questions like this are always going to be answered with: Zend Framework, CakePHP, Symfony, CodeIgniter (Kohana). Those are the most popular PHP frameworks.

The real question is, which framework solves which problem the best? I have my own opinion (Zend Framework for what it's worth) but I really think you will have to take a look at each of them in order to see what works best for you.

link|flag
a fair answer.. – Mark Jun 9 at 6:44
vote up 9 vote down

I think you'll like CodeIgniter

link|flag
I second CI - it is clean, concise and works well with PHP – Toby Hede Jan 7 at 3:31
I like CI but isn't fully written in PHP 5... thats why maybe Kohana is a best choise. Kohana is a port of CI – Gabriel Sosa Jun 25 at 17:33
vote up 6 vote down

Symfony (www.symfony-project.com). It's awesome, especially how well it is documented and how easy to integrate things are.

link|flag
Documentation is not up-to-date, watch out I got several problem with their tutorial. – Daok Nov 7 '08 at 13:37
I've not run into a problem with the 1.0 (LTS) documentation. Symfony is very quick to get up and running, is easy to integrate with other code - including Zend framework, and has plenty of plugins. – Colonel Sponsz Nov 7 '08 at 13:56
Symfony has a steep learning curve, I'll admit, but I think it's worth it. It is far more cohesive than the Zend Framework and it can fully utilize any Zend Framework components you'd like to use anyways. – Pro777 Jun 25 at 17:18
vote up 5 vote down

I'd check out the Zend framework. I think it has everything you need.

link|flag
And it's terribly slow. – Darryl Hein Nov 2 '08 at 19:13
1  
He already said "PHP", don't you think you're being redundant? – Bill the Lizard Nov 2 '08 at 19:15
Bill, the Zend Framework (not Zend Platform or Zend Core) is a collection of PHP classes and add-ons meant to be used as an application framework. You can use the Zend Platform/Core without The Framework™, so it's not redundant. – Alan Storm Nov 2 '08 at 19:50
I meant "PHP" and "slow" were redundant. I guess it was a joke that was only funny to me. :) – Bill the Lizard Nov 2 '08 at 20:16
1  
@Bill the lizzard, Indeed, PHP apps often have to wait on slow database connections anyway, and hardly ever have to do something complex anyway. – Pim Jager Nov 18 '08 at 18:11
show 2 more comments
vote up 4 vote down

Okay - I'm an unexperienced php developer .. but after doing a bit of research, I chose kohana. I think it fulfills most of your requirements.

link|flag
vote up 3 vote down

Symfony! Go for it for its simplicity, documentation. Even Yahoo chose it to build delicious

link|flag
Symfony is hardly simple. It requires YAML to get running, or in lieu of that to get Doctrine to generate the YAML for you from an existing SQL Schema. I recently did generate YAML this way from doctrine with PostgreSQL and it was hardly "smooth sailing". – Phillip Whelan Jan 9 at 0:58
vote up 2 vote down

I've used CodeIgniter and have loved it, learning to use it is quite easy and there is a great community and Derek Allard's blog is a good place to check out. I'd recommend it.

link|flag
vote up 2 vote down

CodeIgniter

link|flag
Why that one in particular? – Phantom Watson Jan 12 at 15:07
vote up 1 vote down

I used CakePHP with good results

link|flag
vote up 0 vote down

CodeIgniter is definitely the most quick to start off. It's simple to use. Symphony is also great but has a greater learning curve.

If you want something more customizable and advanced you can check out php.MVC

link|flag
vote up 0 vote down

I've personally use Zend Framework which has almost everything you mentioned.

It is quite easy to grasp if you are experienced in PHP, I joined a project which is using it and started creating production code in no time. As always, you will always have to have the framework documentation available.

I am not sure about the integration part though. It may be tricky because of the Zend routers, there might be an easy solution but I have no experience in that area.

link|flag
vote up 0 vote down

There are huge benefits to using a framework. The initial learning curve is a worthwhile investment because of the enormous amounts of time you will save in the long run, and even in the not-so long run. I personally use and am a huge proponent of the Fuse PHP MVC Framework. Incredibly easy to get started with, but powerful enough to handle everything - granular user/group permissions, simple but robust form handling, advanced searching built right into the controller, and the list goes on. I work with both Fuse and Cake on a daily basis, and I often wish I could just convert the Cake projects to Fuse, but they're already very far along.

link|flag
vote up 0 vote down

I'd use Seagull if I had 2 weeks to deliver. Although, that's from the perspective of a regular, so I'm not sure how long it would take you to familiarise yourself with the framework, but if you know other frameworks, you won't have a problem with this.

link|flag
vote up 0 vote down

My vote goes to symfony.

link|flag
Why that one in particular? – Phantom Watson Jan 12 at 15:06
vote up 0 vote down

Pretty much any of the full stack PHP frameworks have what you need (cakephp, symfony, zend). Zend might be the right choice for the job because it has functions for many web services like google payments (not sure). The framework I am most comfortable with is cakephp, mostly because that is what I learned first and it seemed to fit my needs and programming style. It felt just right to me. I've tried basic demos with others but they just didn't really feel right to me. If it were me I would ultimately go with CakePHP.

link|flag
vote up 0 vote down

I use lion framework

link|flag
vote up 0 vote down

Have a look at yii. The benchmarks look impressive. Haven't tried it myself, though.

link|flag
vote up 0 vote down

I would suggest Zend Framework. When the time allotment you have, Zend Framework components will surely help; for example see Zend_Gdata http://framework.zend.com/manual/en/zend.gdata.html

link|flag
vote up 0 vote down

Yii is great indeed - in one week I managed to make a basic cms with logins, admin side, i18n, message translations to database, menu tree (both admin and public side). Now working on making support for modules that could easyly be installed.

link|flag
vote up 0 vote down

Just to explain what I'm use for more than 6 years. I have my own PHP framework (not open source) based on hybrid object and scripting engine mostly for using in back-end / admin part of site.

Footprint is very small about 5-10 scripts (<100Kb). It is MySQL only. Speed is extremely fast as they use only several object and scripts in process of page creation. This is archived via semi "compiled" (created) php script.

Its like phpMyadmin to manage table data with added functionality to customize data browse and edit forms. With additional single _creator / configuration script I'm able to produce ready-to-run PHP script (most of them are 1-3Kb, smaller than cluster size on HD :) ) for this framework configured against relational database model (created with WorkBenchSE). Created script can be additionally twicked/hacked via many available options for any required purpose. Its lack many of fancy function which mentioned frameworks above have, but I never see more customizable and useful engine for ME :). For example its uses everything which host system can offer via system calls and nasty evals for the most complicated logic. This PHP framework express all my experience and skill in programming (almost 20 years!) and so, it is best for me (and clients like it also!).

link|flag
vote up 0 vote down

It should also be easy to use most of the Zend Framework components within another framework if needed. I've used Zend_GData and Zend_Search_Lucene components with CakePHP for example.

link|flag

Your Answer

Get an OpenID
or

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