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.
link|improve this question

73% accept rate
feedback

15 Answers

up vote 32 down vote accepted

As I, myself, ventured into a similar question lately I'll share my thoughts with you.

Yii is relatively new in contrast with other frameworks, so it poses a risk regarding availability in know how and longer production runs with it. It also lacks features.

Zend framework is backed by Zend itself, lots of companies are using it in a day to day basis, lots of great documentation and rich feature set. There are two pitfalls though as I've seen from my experiments. One, there is no special way in how you'd do the thing in the "right way" - it is pretty much flexible to your ways. I see that as a plus rather than a minus. Second, as with other frameworks you give up performance to MVC layout - it looks like, in case with Zend, more so than with some other frameworks. During my tests it didn't show up as much as I'd thought it would and I am prepared to accept that performance level - even though I have a project that is somewhat heavily loaded with user hits.

Another option I would suggest you to pursue is CodeIgniter. It resembles Zend Framework, but is more lean and performance less hungry. I chose Zend because of a more complete feature set, official backing by Zend and the fact that I liked it when I made tests with it.

However, I would suggest you make a demo with all of three frameworks and see for youself which one you like most. It doesn't have to be a large demo, but try to grasp some of the features you will make in production (authentication, database manipulation etc.) and implement it in different frameworks - answer will come out by itself. Just try it yourself, do yourself a favour - I was looking for an answer all over, but in the end these tests were the one that provided me with one.

link|improve this answer
I know it is a difficult task to pick one. I've picked one that proved me with demo I wrote that I may like to work with it and Zend offered me comfort in that it won't go dead and even a prospect of support if I needed it someday. – Keyframe Mar 20 '09 at 19:37
1  
Also, Zend Framework can be used as a library which means that you do not need to use its framework capabilities (mainly the MVC paradigm). In case of Yii, you are forced to use the framework at its entirety that is often referred to as a "Full-stack framework". – rFactor Jan 21 '11 at 16:40
2  
I would like to point out that Yii has been designed to work with third party code. Crafty of the Yii people because any third party library (including zend) now benefits Yii. yiiframework.com/doc/guide/1.1/en/extension.integration – k to the z Jun 8 '11 at 16:04
One very important note I would add is that Yii and CodeIgniter requires almost ZERO configuration when installing them. You simply drag/drop the files onto the web server and the framework is running. Zend (last time I checked) requires numerous steps and relatively significant configuration just to get the framework running. A couple years ago I tried to get it running just on a typical online web host (like BlueHost or something) and I couldn't even get the framework installed. I ended up giving up on it and moved on to CodeIgniter (which is great btw). – Jakobud Jan 27 at 23:26
@Jakobud I haven't installed ZF on an online host yet, but I had to set it up locally on XAMPP and I had some issues with php configuration, but everything was solved after googling few times – Spec May 10 at 13:36
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.

link|improve this answer
5  
I don't agree with your performance opinion. Zend Framework is barely any slower than Yii. The only thing it has is a bigger memory footprint and that is about it. This is irrelevant nowadays. Besides, Yii has irritating performance problems such as forcing you to initialize a database connection upon calling methods such as Yii::t(). These kinds of performance problems are never spotted on "benchmarks" that Yii fan-boys are shouting. Even the Yii homepage is using a simple Hello World example that does not reflect real life scenarios. I also dislike the old version numbers in the tests. – rFactor Jan 21 '11 at 16:47
1  
I can't parse your second paragraph. Which items you think Yii wins on and which items do you think Zend wins on? – antinome Dec 3 '11 at 0:29
Zend spaghetti code? yup! i am not agree, the spaghetti in ZF is up to you – jipipayo Jan 19 at 13:09
I have to say ZF became better and better every release. Better to work, more organized (even less spaghetti). I can say ZF is recommended for any project, preferably medium to big to use all it can offer. – Ismael Jan 19 at 13:48
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.

link|improve this answer
feedback

I do prefer Yii over all other PHP frameworks.

Yii

  • has a very good documentation.

  • is super fast.

  • gives you great power with strong code controlling.

  • is not only fast in performance, it is also fast in framework release. Yii core team are releasing very often with a lot of new features.

  • community is growing rapidly.

  • is 100% true OOP framework.

link|improve this answer
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.

  1. It's simplistic
  2. It has a low learning curve
  3. Good performance
  4. Easy to integrate things from other frameworks (i.e. Zend ACLs)
  5. It has a great community with almost always someone on irc that will help you
link|improve this answer
2  
+1 for suggesting something else, and that something being Kohana :) – alex May 12 '10 at 14:35
Frim my experience - I used kohana (2.x) in few projects for about an year and I'm looking for something new. Mostly because the performance difference between time when it's being developed and time when it's actually used. After the database is filled with more and more data the performance goes way down for some reason. Even though you use paging etc. the site works significantly slower that when it was developer and was expected. It might be problem of Database/ORM classes but I decided to look for something new. – shw Dec 2 '10 at 23:21
@shw With version 2.x the ORM classes are horrible for high traffic sites in my opinion. We noticed the same thing and moved away from using their ORM. I've had people tell they get good performance out of it so maybe I was just using it wrong or their definition of high traffic site is different than mine. I've stopped using KohanaPHP, because I didn't like the direction they went with 3.x. They basically made a a whole new framework and kept the Kohana name. – William Dec 27 '11 at 20:43
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

link|improve this answer
1  
Yes, you should be concerned with the fact that Yii's documentation is mostly API docs, while Zend actually has detailed, complete documentation. – ryeguy Mar 9 '10 at 20:10
this metaphor is amazing :D i agree yii documentation is easier to understand. while try to find solution in zf, it took me days :( – Elliot Yap Oct 14 '11 at 7:44
@ryeguy: Zend has a lot of documentation but I found it unclear and lacking in detail in some (too many) places. Explanations were sometimes vague and did not convey a precise understanding of how things worked. I've not yet read the yii docs though. – antinome Dec 3 '11 at 0:42
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

link|improve this answer
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.

  • The Yii website shows it has great performance though I don't believe their graph. Zend has good performance when using standard PHP optimization techniques.
  • Zend has good documentation, there are tones of examples for it online and lots of forum post about how to solve problems with it. Yii also has pretty good documentation with user feedback. The Yii community is still pretty small however and there are only a few tutorials for it online and very few forum post.
  • Zend has good stability. Yii is still new so it's hard to predict it's stability.
  • Zend can be very verbose. Yii will give you a smaller code base.

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.

link|improve this answer
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).

link|improve this answer
1  
So you actually using Yii now, Is there a way to contact you in a few weeks and ask you about it? – Itay Moav Mar 21 '09 at 0:33
Sure. My profile has a link to my site where you can reach me through the contact page. I'm still going through the basic blog tutorial but I will try some customizing of that blog in order to see how painful it is to do common things like access control, form validation, etc. – gaoshan88 Mar 21 '09 at 4:11
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

link|improve this answer
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.

link|improve this answer
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).

link|improve this answer
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 ...

link|improve this answer
The end solution was to use ZF MVC framework only (which I really like) and use custom libraries for the rest... – Itay Moav Apr 23 '09 at 12:17
3  
Sorry, but I think your answer is pretty useless to the community. Zend Framework is not really slow whereas Yii being really fast. See my comment for Ismael. Let me also tell you that Yii 2.0 will be PHP 5.3 only and so will ZF. And about bugs, Yii has by far more bugs than ZF eventhough it has less functionality. Also, the source code is not readable / understandable with all its hacks and ugliness from view rendering to message parsers. I've used both frameworks for real life projects and I find ZF much more solid and robust. Yii is simple for beginners. – rFactor Jan 21 '11 at 16:52
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/

link|improve this answer
feedback

Zend Framework requires certain amount of time to learn it.
It has good documentation.
There are good tutorials online, especially on youtube.
Zend Framework has it's zf tool which enables one to create projects, controllers, actions, models, forms from the command line.
ZF has been used widely. I'm required to learn it for entry test in a IT firm. Client ask for it during projects.
ZF has been actively developed.
There is good literature about ZF.
It is based on loose coupling: you use only the components that you really need.

link|improve this answer
To be honest, I probably wouldn't learn Zend if it was not required by the firm. But as I can see, it makes development easy once you get used to it. – Spec May 10 at 13:45
feedback

Your Answer

 
or
required, but never shown

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