I am running a site about PHP Frameworks, but I can't find a exact definition for it, and I am always thinking a question, how to make out a good PHP framework? Features? Manual? Efficiency? Or something?
I want to know your point.
thanks.
wood
|
I am running a site about PHP Frameworks, but I can't find a exact definition for it, and I am always thinking a question, how to make out a good PHP framework? Features? Manual? Efficiency? Or something? I want to know your point. thanks. wood |
||||
|
|
|
Asking a programming forum what is a good framework is like asking a car forum what is a good car. The opinions vary wildly, and in 95% of cases, it really doesn't matter what you choose, as long as it's actively developed. Most of your replies will be based on religion and not subjective comparisons. :) |
|||
|
|
|
Essentially a framework is the structure that you can choose to build your program on. It can allow you to connect to many different API's as well as determine the structure of your own application. I use the Zend Framework. It's not the easiest to learn, but certainly has everything you need for a great application. I would suggest going through the QuickStart guide on the site to get the ball rolling with this. It uses Model-View-Controller which is essential in my opinion. Once you have it configured, it makes things extremely easier! Other frameworks include CodeIgniter and Symfony. Some like CodeIgniter for its smaller footprint. It's all a matter of preference. Whichever you pick be sure to use the documentation on the sites as it is essential to understanding how best to use it. Also, don't be scared to peak at the code every once in a while just to get a better understanding of how things work. |
|||
|
|
|
Frameworks provide scaffolding that can allow you to develop faster/more cleanly. They often provide toolsets for both the UI components and the underlying database access. For (very) small projects, a framework can be overkill, but often, it's helpful to provide you with a lot of reusable code. Some notable frameworks for PHP : Zend Framework CodeIgniter Symfony CakePHP Mojavi |
|||
|
|
A PHP Framework in my eyes is a collection of classes which help you develop a web application. In my company we use the Zend Framework. I have to say that getting started with this Framework is pretty hard, but if you get how to use the API and the Reference Guide you have a great Framework. Also its interessting because they have Zend people sitting on the project so they can use those internal tricks and get some performance boosts others can't get. What also differs ZF from others is the ability to create MVC programms with no big hassles. |
||||
|
|
PHP framework is a library that makes the life of site developer easier by for example hiding some complexities of HTTP protocol or by adding some useful functions. For example the CakePHP implements so called MVC which makes developer to think a level higher than HTTP. This is what I have learned so far. |
|||||||
|
|
There's a lot to be said for frameworks - and good posts here. However be aware that they are not always the best solution. Reasons you might prefer to avoid them are
None of the above are conclusive arguments against using a framework, in many (most?) cases the advantages will score more highly, but you should not be reaching for one without first considering what your requirements are and what is the best solution for each particular problem. |
||||
|