Which PHP framework should I choose between ZendFramework or YII?
Points I need to consider:
- Performance (assuming an accelerator is used)
- Documentation
- stability of framework
- less to code.
|
Which PHP framework should I choose between ZendFramework or YII?
| |||
|
feedback
|
|
As I, myself, ventured into a similar question lately I'll share my thoughts with you.
| |||||||||||||||
feedback
|
|
Here is my experience with both. Performance : Yii wins Documentation : Zend Wins stability of framework : Draw less to code. : Yiiiiiiiiiiiiiiii (ZF is too much espaguetti) You can achieve the same result with both, but, with Yii it's easier, quick, SIMPLE. And, can it be use some modules from Zend framework, not the entire framework. | |||||||||||||
feedback
|
|
A point that seems to be missed here is that Yii can use Zend or any other 3rd party set of classes libraries to extend it's feature set as needed. I do not believe there is an easy way to use Yii in Zend. I have also seen posts here suggesting that Zend is as fast as Yii. From my experience this is not the case. From a new user all the way up to an experienced framework coder you can build web apps faster, model database tables/relationships faster (using Yii's database modeler Gii) and basically code faster using the Yii provided classes/shortcuts. The same goes for debugging and unit testing using Yii's built in debugging/logging tools. As to speed testing the code for performance just use ab (apache bench) and test for yourself... Yii wins clearly. I have use Yii, Zend, CakePHP, CodeIngniter, Symfony, and Kohana. I have been writing PHP sites and code for many years now. I will not say that either is "better" than the other. I will say that based on your needs one can be better for you. I prefer Yii, many others do as well. I really appreciate how easy it is to interact with the developers directly and get bugs patched. I personally have entered 4 bugs pertaining to Oracle (one that is a workaround for an Oracle bug!) that were almost immediately patched and released now and integrated into the very next release. I have seen others responded to and acted on just as quickly. You simply can't beat that kind of response. | |||
|
feedback
|
|
I do prefer Yii over all other PHP frameworks. Yii
| |||
|
feedback
|
|
I know it's not on the list, but I have you had a look at Kohana (http://www.kohanaphp.com)? Kohana is my personal framework of choice for a couple reasons.
| |||||||||
feedback
|
|
zend = windows yii = mac the author of yii knows what user-friendlyness is. that is a VERY important aspect. yes, zend got a huge codebase, but just have a look at their online api documentation...than you take a look at yii:s..and that is the difference you should be concerned about. a userfriendly way will always win over time | |||||||||
feedback
|
|
We recently chose between Zend, Kohana and Yii and decided on Yii because we needed a framework that had the least baggage and could support our site of 1.5 million monthly visitors. I wrote a long post about the rewrite here: http://erickennedy.org/Drupal-7-Reasons-to-Switch | |||
|
feedback
|
|
It's hard to answer your question based on those four categories. You should really choose a framework based on your project/personal goals not your development ideals. Everyone wants their code to run fast, have great documentation and be stable with minimal lines of code.
Zend is something you choose if you are going to do many projects with it. If you only need a framework for a project or two then choose something else. I would not choose Yii simply because it is new. Using new software always increases the risk of project failure. To answer your question I would say Yii assuming this is for a personal project and going off of your profile. You will find it much more exciting to work with than Zend. | |||
|
feedback
|
|
I know that Yii is created by the main guy behind Prado and I never liked Prado myself. It is very intelligently designed but I just didn't click with its templating system. Seemed like a case of "smart guys develop smart system that people don't want to use". That said I am currently evaluating Yii because it does look impressive and is boasts pretty high performance (and it has abandoned the Prado way of templating... well, it has it as an optional feature). | |||||||
feedback
|
|
I found a quite interesting link dealing with the differences between yii- and zend-frameworks (and codeIgniter). Based on the text there, I tend to use yii for my future site as it seems to be faster, more stable and better structured. See: Shelmandu.com | |||
|
feedback
|
|
For Performance I use DooPHP, just found out this framework recently. And I use Zend framework components with it since they share the same new BSD license. DooPHP + Zend = Performance + rich list of features Besides the framework is really easy to get started than Yii or CodeIgniter. IMHO the database ORM in Doophp is very good. | |||
|
feedback
|
|
You mention that you plan to use an accelerator. Something to keep in mind is the system requirements to host a Zend application. For many solutions I have to use shared hosting and some of the most basic configurations out there don't support Zend. I went with Yii and I am very impressed (compared to CodeIgniter which I have used extensively). | |||
|
feedback
|
|
Zend FrameWork is really slow ... Yii is really fast Zend FrameWork must run on PHP 5.2.X( You can't use Zend_Date or Zend_Locale on 5.1 ) Yii must run on PHP 5.1.X Zend_Mail has many bugs and never fixed them (v0.1~v1.7) !! Why so many developer design ZF , but give us slow and bug framework ... | |||||||
feedback
|
|
I prefer Yii Framework. Features : 1. Fastest than other framework. 2. Nice Documentation. 3. Nice Features like widgets, extensions. 4. Best Caching features. 5. Complete OOP Supported. 6. Less Code. 7. Easy GII Tool to create CRUD operations. 8. Nice support to your problems through forum. 9. Proper directory structure & layout system. 10. Easy to upgrade previous version. for more have a look over. http://www.yiiframework.com/features/ | |||
|
feedback
|
|
Zend Framework requires certain amount of time to learn it. | |||
feedback
|