Home > Article > PHP Framework > What are the disadvantages of yii framework
Yii is a high-performance component-based PHP framework for developing large-scale Web applications. Yii is written in strict OOP and has complete library references and comprehensive tutorials.
From MVC, DAO/ActiveRecord, widgets, caching, hierarchical RBAC, web services, to theming, I18N and L10N, Yii provides today's Web 2.0 Almost everything you need for application development. In fact, Yii is one of the most efficient PHP frameworks. (Recommended learning: yii tutorial)
Yii is a high-performance PHP5 web application development framework. A simple command line tool yiic can quickly create a web application code framework. Developers can add business logic based on the generated code framework to quickly complete application development.
Features
Fast
Yii only loads the features you need. It has strong caching support. It's explicitly designed to work efficiently with AJAX.
Safety
Yii is safe by its standards. It includes input validation, output filtering, SQL injection and cross-site scripting prevention.
Professional
Yii helps you develop clean and reusable code. It follows the MVC pattern, ensuring a clear separation of logic and presentation layers.
Yii Disadvantages:
1. Less guidance and consideration for the Model layer
2. Fewer document examples
3. Too much English
4. Requires proficiency in PHP technology and proficiency in OOP programming!
5. View is not an ideal view. The ideal view may be just html code and will not involve PHP code.
The above is the detailed content of What are the disadvantages of yii framework. For more information, please follow other related articles on the PHP Chinese website!