Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Looking into using frameworks for some personal PHP apps - the only one I have ever vaguely used us codeigniter, are the any better well documented frameworks available?

share|improve this question
I can't recommend anything myself, but here's the difference between a Framework and a Library: in a Library, you have control over the program flow, in a Framework, you don't. – WebDevHobo May 30 '09 at 12:20

8 Answers

up vote 10 down vote accepted

I'd stick with CodeIgniter to be honest.

More importantly though, why do you need a framework? By that I mean, a framework is a tool designed to solve problems so your question--which is quite common--is sort of like going to the hardware store and asking what tools to buy without having a plan of what you're going to build, how or why.

So don't use a framework because you think you should have one. Use one when it solves a problem you actually have, not a problem you think you may eventually have.

If you just want to see how something is different, well there are lots to choose from: CakePHP, Symfony, Zend and others. Zend probably isn't a bad one to choose because it's quite modular so you can use as much or as little of it as you like.

share|improve this answer
Well I don't really, just felt like having a good old mess around with one :D – Oliver Stubley May 30 '09 at 12:22
Makes more sense after the edit - Thanks, just for playing about and so I know whats available if I ever came to the point of using one for a proper site. – Oliver Stubley May 30 '09 at 12:26
"So don't use a framework because you think you should have one. Use one when it solves a problem you actually have, not a problem you think you may eventually have." this is to true, +1 – Jakub Arnold May 30 '09 at 12:40
A friend of mine recommended air framework, however i never touched it due to lack of documentation for a new user - any experience using it? – Oliver Stubley May 30 '09 at 12:50

I use Zend Framework.

Because:

  • It is modular
  • You can use it as a library
  • It is developed by Zend (PHP)
  • It has a good documentation
  • It has a good/large community
  • I like the way it works...
share|improve this answer
2  
+1 because Zend is more of a library than a framework as well, so it just gives you tools to do what you need; all of the other PHP frameworks try to force you into developing a certain way. – WayneM May 30 '09 at 12:33
Agree, and it still offer a way to work as a team if you want it ! – Boris Guéry May 30 '09 at 15:45

Well,

  • zend is kinda heavy to start with

  • Codeigniter is good and simple, and since you already have experience with it,it sounds like a good plan to keep doing that

  • Kohana is lightweight,and easy to learn. It's also based on Codeigniter.If you are looking to try something new,Kohana shouldn't seem very alien to you.

share|improve this answer

if its a few pages of php scripts to send emails and query mysql to display stuff, i'd rather do it without any php framework.

otherwise, i'd recommend symfony. it has a slight (maybe not so slight {g}) learning curve, but can be very productive.

end of the day, its individual preference...so check out this comparison and decide for yourself. ;-)

share|improve this answer
Thanks - Looks good, Code Igniter seems to be the right framework at the moment, however i'll check out some of the others that are more like libraries too. – Oliver Stubley May 30 '09 at 12:47

This recent talk discusses a few pros and cons of some PHP frameworks, see if it helps:

share|improve this answer
I'll take a look as soon as i get some time, thanks. – Oliver Stubley May 30 '09 at 16:08

Yii is powerful framework and it's well documented: http://www.yiiframework.com/

share|improve this answer

i use php-quantum, super easy and fast, uses smarty and phpactiverecord, so it's kinda powerful.

https://github.com/cafreamoroso/php-quantum

share|improve this answer

I think symfony is excellent...

share|improve this answer
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Jon Aug 29 '12 at 22:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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