Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been using Code Igniter for my PHP projects, when I start them from the beginning. It is very nice framework, saves me a lot of work and let me have low level access if I need to do something special.

Code Igniter is also faster then similar frameworks by order of magnitude. I came across Yii framework which claims to be even faster and easier and prettier and whatever.

I never heard of it and I was wondering if someone used it in some real life project and have practical experience that he is willing to share.

share|improve this question

closed as not constructive by casperOne Jan 30 '12 at 19:03

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

17 Answers

up vote 12 down vote accepted

This was (now a dead link (Internet Archive version)) a nice comparison of CakePHP, CodeIgniter, and Yii. Notice that his benchmark's results are considerably different than those shown by Yii. Hopefully he will post Part 2 of the comparison soon, which will probably contain a lot more useful information for deciding on a framework.

share|improve this answer
11  
Sorry to say, but that benchmark is being influenced by variations in the CPU allocation, SO it's not a reliable source. The author says "Yii used a dedicated server for the tests. I used the shared hosting service where I’m going to deploy my actual application. Thus, Yii’s benchmark is more technically fair, but mine might give a better impression of real world behaviour." So no, the benchmark is not well-written (read: isolated, as any benchmark MUST be), nor can its data be trusted. – Flavius May 4 '09 at 9:13
1  
Can we see the results somewhere? Or if you remember something, can you include it in your answer? – mixdev Jun 1 '11 at 21:24

I've been using Zend Framework for some bit of time, but then I went away from it. Indeed, ZF is a masterpiece in terms of software development patterns and practices, BUT it has less to do with REAL life requirements.

Guess what I'm using now? Exactly, Yii :) While not an expert at it (yet), I have the feeling that it simply fits better practical, but yet purist php programmers.

As for the benchmark, I don't rely on it, I simply say how yii feels: slim.

NOTE: And yes, I DID learn a lot from ZF, and YES, I'll use some of its components here and there. BUT I'll keep on using Yii as the main framework.

Update

With the new PHP 5.3+ ecosystem, where we have namespaces and the PSR, I consider ZendFramework 2, lithium, and symfony 2 to be awesome frameworks which you can even combine if needed.

share|improve this answer

Yii is an awsome PHP framework. I'm using it for a major project I'm currently developing.

I was using CodeIgniter, but switched to Yii, with no regrets I might add. CI is great for beginners who are just starting out with MVC, but if you want to dig a little deeper and get more into OO, like Carl Jacobson said, then Yii is the way to go.

Yii has excellent documentation and a very active forum community. Qiang Xue, the developer, knew exactly what he was doing with Yii and the guy, to my liking, is a genius.

From my personal experience, Yii is faster that CI

share|improve this answer
Who's Carl Jacobson? – Marco Demaio Feb 25 at 10:07

I have used Yii for 6 months now and am on my 3rd project.

I considered using:

CI, Kohana 3, Symfony

Kohana 3 was not so well documented and I ran into some development problems. Symfony had a buggy release that put me off. CI seemed a little behind the times (PHP4).

In the last 6 months Yii has gathered noticeable momentum. The team members are very quick to react to suggestions. 3rd party extensions are being added most days. The framework is evolving well with minimal upgrade issues. The forum has more examples now.

Learning curve - yes there is one but most answers can be found on the forum.

Positives:

  • Very flexible, fast to develop thanks to the generator
  • Most common features already exist
  • The applications seem to run quickly under current loads
  • Good documentation.
  • Easy to extend.
  • Able to be used in conjunction with other frameworks but I ahve not needed to do this.

Negatives:

  • Medium learning curve
  • Some examples/walkthroughs are a little out of date after a new release - hopefully these will be updated.

Summary:

I would recommend Yii for people with moderate/good PHP experience and will continue using it for all possible projects - I haven’t found any projects that it is not suitable for yet.

share|improve this answer

to use 2 db connection you can try putting another db component into the configuration file, like so:

array(
'components'=>array(
    'db'=>array(
        'class'=>'CDbConnection',
        'connectionString'=>'sqlite:path/to/dbfile',
    ),
    'anotherDb'=>array(
        'class'=>'CDbConnection',
        'connectionString'=>'sqlite:path/to/anotherdbfile',
    ),
),

access it like so:

$firstDb = Yii::app()->db;
$firstDb->active = true;
// etc, then
$secondDb = Yii::app()->anotherDb;
$secondDb->active = true;
share|improve this answer

I like Yii more than Code Igniter. Yii loads only what's really necessary for your current page to work. Try yiic (Yii command line tool). Also here is a small Yii project i'm working on that might help you understand Yii better: http://code.google.com/p/web3cms/

share|improve this answer

I've been using Yii for one year now and have used it in four real-world projects at work, and a couple of hobby projects at home.

It is easily my favorite PHP framework. Loosely based on Ruby on Rails, it has a strong OO foundation and a relatively easy learning curve. As other commenters have said, it has pretty good documentation, although I sometimes wish it had more examples included in the docs.

Having used CodeIgniter for some real-world projects, I can honestly say it is much more robust and much faster. If you configure it properly (e.g. use sensible logging and caching, use the Yiilite.php file in production, etc.), it is incredibly fast, compared to other frameworks. While Zend is very nice and really comprehensive. Yii does not feel as monolithic as Zend does.

The community is great; if you post a question on the forum, you can expect to get an answer from community members within 24 hours or less, in most cases.

Also, Yii has excellent i18n support.

All in all, it is the best MVC PHP framework available today, in my (humble) opinion.

share|improve this answer

It looks a nice framework to me. Certainly feature rich and much more OO than CI. No, I haven't used it for any real world projects yet. But I'll be keeping a cloce watch on it as I think it has all the things to become the framework of choice for PHP.

share|improve this answer

I am using CI for past one year and feel very easy to work with it..i tried using YII some parts are excellent like the CRUD etc but i personally feel that Yii has a steep learning curve as compared to CI. that was the only reason i prefer CI over YII

share|improve this answer
1  
no need for -1=) – ajsie Feb 2 '10 at 1:50

I'm currently using Yii for a project (pet project outside of working hours), and so far I have to say that I love it. I have come across a couple of problems, but nothing that can't be solved with a work-around (i.e. no more than a single database connection per application).

There can be a very steep learning curve if you are not experienced in MVC and OO concepts, but the reward is worth the effort in learning.

share|improve this answer
You can have multiple database connections per application. kevinbradwick.co.uk/2010/05/… – Jonah Jul 17 '10 at 6:41

I have used Yii for a couple of projects and I love it. I have dabbled with CodeIgniter, Zend and Cake, but since I wasn't too deeply married to any of them yet I decided it was worth looking around and picking the "best" framework, instead of the "most popular" one. My research led me to choose Yii.

It has a sensible MVC layout, good documentation, it's actively developed, has a good community, it's fast (enough), and talk about features: OOP PHP5, Ruby style "mixin" capabilities via Behaviors, a robust Event system for building hooks/listeners, internationalization features, a nice ActiveRecord system, jQuery built in (AJAX friendly), a great caching system, etc, etc.

If you are already used to a particular framework you should probably stick with that one, but if you are looking to pick a Framework to learn I would recommend Yii, it's been good for me.

share|improve this answer

Here is another comparison of Yii versus CodeIgniter, with an additional comparison against Kohana to boot.

share|improve this answer

Yii Framework and the phpmark tool that is used for the benchmarks is written by the same author (qiang.xue)
Therefore the performance stats are probably tuned to the strengths of yii.

I have no personal experience with yii, sorry.

share|improve this answer
3  
That's a pretty serious allegation. – mikewaters Aug 24 '11 at 20:15

I have finished 3 projects using YII successfully. From my experience

  1. YII Framework is mature, well documented and actively developed
  2. Very large community
  3. Easy to extend and we can use third party libraries
  4. Flexible Convention over configuration and many more features

Some of major projects developed in YII

http://www.stay.com
http://www.piclyf.com
http://www.chive-project.com

Books

http://www.yiiframework.com/news/50/yii-1-1-application-development-cookbook-released/
http://www.amazon.com/dp/1847199585?tag=gii20f-20&camp=0&creative=0&linkCode=as1&creativeASIN=1847199585&adid=0BHF2HS6FNS82M85KJQT

Client Side Component EXT JS for YII

http://www.ext4yii.com/

share|improve this answer

Zend or Yii - thats the Question of the Day. Zend is pretty and Yii is pretty.. AIDS or Plague :)

I think i will use Yii .. sry my english is horrible ^^

share|improve this answer

read the documentation http://www.yiiframework.com/doc/api/CDbConnection :-)

share|improve this answer

Yii Amazing framework, the community really grew, now you have a lot of tutorial and info, make it really fun and easy to develop , and getting an answer really fast...

In Yii you have even radio podcast http://yiiradiio.mehesz.net

The community really active, and it is a beautiful thing to see, for example Kohana is a great framework but his community dead...

I think if to choose framework, in first place you should checkout Yii, then ZF and then Symfony

I decided to stick with Yii, just love it!

ZF job opportunities amazing... but man... with Yii the development twice faster, so I think ZF might lose his popularity to Yii and Symfony2 , they so much better... and you can use ZF like library...

share|improve this answer

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