Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between Yii 2 advanced application and basic?

Tags:

yii2

What is the difference between advanced application and basic application in the Yii framework?

Does they have any differences regarding security?

like image 477
m hadadi Avatar asked Sep 11 '14 13:09

m hadadi


People also ask

What is difference between Yii and Yii2?

Conceptually Yii1 and Yii2 are quite similar, however Yii2 runs on newer PHP versions and utilizes namespaces, traits etc. Yii2 has also support for dependency injection through $container singleton available after initializing the framework.

What is the latest version of Yii?

The latest version 1.1. 23 was released in December 2020. In May 2011 the developers decided to use new PHP versions and fix architectural shortcomings, resulting in version 2.0. In May 2013 the Yii 2.0 code went public, followed by the first stable release in October 2014.

What is Yii Best for?

Yii is the first choice of the developers over the other PHP frameworks because of its developer-friendly features. Its features are secure, reliable, and easy to configure. It is ideal for websites and web apps that are having high traffic for example web portals, eCommerce portals, or CMS Websites.

Is Yii Framework easy to learn?

As @samdark said, Yii is easy to learn and use but you need some previous knowledge. My advice is going step by step through the official documentation doing some test project. In a couple of months you will be able to do useful stuff.


1 Answers

The following table shows the similarities and differences between the basic and advanced templates:

Comparison

Source: https://github.com/yiisoft/yii2-app-advanced/blob/master/docs/guide/start-comparison.md

As you can see, the main differences are:

  • Advanced template supports front- and back-end apps;
  • Advanced template is ready to use User model;
  • Advanced template supports user signup and password restore.
like image 147
M.S. Dousti Avatar answered Sep 22 '22 05:09

M.S. Dousti