vote up 6 vote down star
5

I've started writing quite a few applications in PHP mainly for Wordpress and becoming more and more familiar with the language.

Someone told me about CakePHP and Codeigniter and I wanted to get a better understanding of how these could help me and whether it's worthwhile spending the time to learn a framework?

Thanks

Jonathan

flag

52% accept rate
This is a duplication, view here stackoverflow.com/search?q=php+framework – The Pixel Developer May 3 at 13:56

8 Answers

vote up 11 vote down check

What are the benefits of using MVC PHP frameworks ?

Well there are many benefits of using PHP frameworks, let’s see some of the main benefits of using them.

  1. They PHP frameworks follows some design pattern, so when you use these framework you’ve to follow their coding convention which makes your code clean and extensible for future purpose.
  2. The Popular PHP frameworks like CakePHP, CodeIgniter, Zend Framework , Symfony follows Model View Controller(MVC) design pattern which separates business logic from user interface making the code cleaner and extensible.
  3. As everybody can guess, these frameworks contains a lot of libraries to make your job easier. For example, to validate a from you don’t have write much code as you’ve to in normal coding scenario, just few lines of code calling the library might be enough for it.
  4. While working on a large project in a team, these MVC PHP framework will be a great tool for development as you can assign a developer to develop MVC part of a module for a developer and integration will be quite easy of these developed module at final level.
  5. These MVC framework will really helps you to develop the project rapidly, if you know one framework well then you’ll never worry about the project deadline.
  6. Most of these MVC frameworks uses clear url approach making your web project SEO friendly.

check article

link|flag
Apart from point 3, all of your bullet points can equally well be achieved without a framework. – Jacco May 3 at 14:01
6  
you can walk to your destination , you will arrive there but i prefer to use my car – Adinochestva May 3 at 14:26
3  
Not really--not unless you write your own MVC framework, which is still a framework. And even if you could implement the MVC pattern without a framework (your own or otherwise), why would you want to? Unless you're just dabbling in PHP web development and won't ever touch PHP after this one project, you will want to be able to re-use a lot of your code, like routing, ORM, session management, security, etc. You might be able to make a painting without a paintbrush, but that doesn't mean using the right tools for the job doesn't have its benefits. – Calvin May 3 at 15:08
^My previous comment was in response to Jacco – Calvin May 3 at 15:09
vote up 16 vote down

My philosophy is that you should only use something when it solves a need that you currently have.

There's a real tendency, particularly in this realm, to simply use a framework for the sake of using one or because you feel like you should be using something. I discourage such practices. Also frameworks I think have the most value when you've done things the hard way so you have a good understanding of what problems you have and how the framework can help you in that situation. Framework choice does depend on the situation.

That all being said, the MVC pattern with Web applications is useful so it certainly wouldn't hurt you to learn at least one. I'd stick to a fairly minimalist framework however. CodeIgniter springs to mind here.

Lastly, the other danger with frameworks is that they can be so invasive that you're no longer doing PHP, you're doing CakePHP, Symfony or whatever. That's not necessarily a problem but the danger in it being so invasive is you don't get a good grounding in PHP and if you ever want to change it'll simply be too hard that you'll never be able to do it.

link|flag
1  
I agree. Using a framework is good, but use one that's based on plain old PHP and HTTP standards, such as Zend Framework. CakePHP may be fast if you want to develop a simple app, but it's horrible if you want to some out-of-the-box stuff. It's way of passing parameters in the URL (/my/page/foo:bar/this:that) makes you think the old way (?foo=bar&this=that) is bad, but it's not. – Bart van Heukelom May 13 at 20:01
vote up 3 vote down

One of the great perks of PHP frameworks are that they minimize reinventing the wheel in a great number of common web application needs. Security issues, graceful exception handling, RESTful URLs, and reusability of code across your site are fairly universal considerations.

It may be easier to familiarize yourself with the tools of a framework and then see if you want to take on the full MVC system it supports. For that end, I'd suggest familiarizing yourself with the Zend Framework. ZF works as a library of classes which can be implemented individually for particular uses--anything from security to Lucene search--but contains classes which, when used together, implement a fully fleshed out MVC paradigm.

link|flag
vote up 3 vote down

I think it's undoubtedly a good investment to spend the time to learn a PHP framework. For one, it'll teach you how someone has tackled the problem of architecting the framework, how to organize your PHP code, and how to handle things like sessions and database accesses...etc...

For the most part, if you are serious about developing web-apps, you will need to use a framework of some sort rather than writing your own framework from scratch.

Some reasons why you should NOT write your own framework:

  1. You're re-inventing the wheel, when it's been done many times over already.
  2. You're not very likely to do a better job than an open-source framework, which has been tested and iterated over by many developers.
  3. You'll spend all your time writing and debugging your own framework than you will spend on actually creating your application.

So yes, learn a couple of frameworks and find one that suits you the best!

link|flag
Good points. I'd also add that instead of rolling your own, it would be more productive to simply contribute to one of the myriad frameworks out there. Instead of 1000 developers each separately building their own framework, reinventing the wheel each time, it's far more preferable for them to get together and work together on a single framework. – Calvin May 3 at 15:16
However, you will need to make your own if you're not satisfied with the current ones out there (like me). Oh, and it's fun :P – Bart van Heukelom May 13 at 20:03
vote up 1 vote down

Diclaimer: I'm NOT a php programmer and I have not EVER written a php application. On the other hand, I have installed, customized and used alot of php cmss for my site and shopping carts.

In my opinion php suffers from serious problems. The biggest one is that “framework” seems to be a foreign word for almost all big and even successful projects. Php code tends to become quickly spaghetti salad: spaghetti html mixed with spaghetti code and spaghetti sql.

osCommerce, one of the most successful shopping cart ever, is mostly unmaintable. That applies also the big majority of php projects.

Whether you should use a framework for you project, I say yes! Definitely! No matter how big is your project, using a web framework helps you tidying you code up and writing maintable code.

It also impact your programming style even when you are not using a framework.

link|flag
vote up 0 vote down

Using MVC-framework will make your development more easier. Especially database-related applications. It provides you a crystal clear folder structure and plenty of code libraries. I would suggest you start from CodeIgniter.

link|flag
vote up 0 vote down

Hello there, i just want to tell about my own experience in programming, I'm still newbie though

  1. first by using framework you'll get used to their coding style/rule, which is good because most of the framework are deeply thought about how they write their code. in short i get better style and cleaner code
  2. Usually framework come with many arsenal (plugins and or library), which you can find in internet, this will reduce your coding time, cut wasted time. In short you can make your own precious time thinking on business process
  3. with using open source framework, there's other programmer who already know and probably mastered the framework, then you can easily collaborate with others.
  4. in truth i'm not a well organized programmer, but it was before i 'm using some open source framework. perhaps like me you'll get more organized

That's all I can share with you for now, i'm not good with writing in english, sorry for that. but the point is i recommend you to use framework

Happy coding friend.

link|flag
vote up 0 vote down

Frameworks are great when you got a team of developers working on the same project. The MVC controller integrates the designer + programmer beautifully. However, creating "framework-like" elements and "reinventing" the wheel isn't such a bad idea. If you're working on a huge project, it's better to get down and dirty with your code and customize EVERYTHING to fit your needs. It'll become a stronger product as it will be developed entirely for the project.

link|flag

Your Answer

Get an OpenID
or
never shown

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