Flexibility Yii

I came across quite a bit of information that CI is a really flexible framework. Yii also provides more flexibility? And the ability to choose when to use it or your own php?

+7
source share
3 answers

Flexibility is very subjective, so this question is a bit vague.

From my experience, I can tell you that Yii is very strong, but in most cases, when you want to move to a truly advanced territory, you need to do the "Yii way". If you do this, you will find that the pieces of the puzzle fit well and everything goes smoothly. If you don’t do it (because, apparently, you haven’t yet understood what the β€œYii way" is), this will make time difficult for you.

+5
source

I have been using YII since 2 years. I use it in conjunction with Zend AMF and create backend systems for Flash campaigns, create HTML5 web pages, simple pages, various contest pages and find them suitable for every occasion that you need. The main advantage is that it is really structured, logical and fast. Therefore, because of this, I spend my time creating application logic, and not setting up the environment, setting up all requests, pages, subpages, etc., the MVC model + ActiveRecord saves my time here.

+4
source

I have been using Yii for a year now and find it very flexible. You can add your own methods to any model or write components of external models. You should be familiar with the structure of MVC, object-oriented programming and component writing, you need to know how to register a component in the configuration file and how to name it Yii.

+2
source

All Articles