PHP Frameworks comparison
Anyone still using barbarian-style php coding style nowadays ? silly thing i thing
. Well you better get move to frameworks..
the offering many features !. There are many php frameworks today, each of them offering many technology features such as Model View Controller (MCV), caching, more flexible with many database platform, ajax, and more. You can use on your very simple project to (especially) the large one. Below are the comparison of some php frameworks. Which one to choose ? it’s all yours
|
Feature description :
- MVC: Indicates whether the framework comes with inbuilt support for a Model-View-Controller setup.
- Multiple DB’s: Indicates whether the framework supports multiple databases without having to change anything.
- ORM: Indicates whether the framework supports an object-record mapper, usually an implementation of ActiveRecord.
- DB Objects: Indicates whether the framework includes other database objects, like a TableGateWay.
- Templates: Indicates whether the framework has an inbuilt template engine.
- Caching: Indicates whether the framework includes a caching object or some way other way of caching.
- Validation: Indicates whether the framework has an inbuilt validation or filtering component.
- Ajax: Indicates whether the framework comes with inbuilt support for Ajax.
- Auth Module: Indicates whether the framework has an inbuilt module for handling user authentication.
- Modules: Indicates whether the framework has other modules, like an RSS feed parser, PDF module or anything else (useful).
- EDP: Event Driven Programming.
From my own opinion i them all, unlike self hand-coded, these php frameworks offering many features, especially if you concern about site security including XSS, SQL Injection, etc, with simple function the framework will take care of this. I think it is great solution for very long hand-coded, creating algorithm, test-try, all the headache things… those framework also offering many utility function / method. Happy coding
Related posts:
