What are the advantages/disadvantages of using a PHP framework over just writing direct PHP code?
closed as exact duplicate by Chad Birch, vartec, Paolo Bergantino, Andreas Grech, Tom Haigh Mar 11 at 15:35 |
|
|
As noted by Tomas and Ngu, the your question is duplicate. What I'd recommend, that you first read what web framework is. http://en.wikipedia.org/wiki/Web_application_framework |
||
|
|
|
|
A framework gives you standard solutions to typical problems, e.g. for an online shop that can cover the functionality for a customer login (including session handling), a shopping cart, placing orders... The big advantage is that
The bis disadvantage is that
|
||
|
|
|
|
A framework is a library. You have an investment of time to learn how to use a library, but once you know how it works, you should get back your investment many times. A PHP web framework applies this principle to all the common things you do when you produce a (usually database driven) website with PHP. |
||
|
|
