Home  >  Article  >  PHP Framework  >  Which one to use between yii and laravel?

Which one to use between yii and laravel?

(*-*)浩
(*-*)浩Original
2019-12-14 09:29:361916browse

Which one to use between yii and laravel?

Yii2: The framework is very malleable. Many core modules can be inherited and rewritten, or unused modules can be skipped directly. The Gii tool can quickly generate CURD, model code, and write management. It’s really worry-free backstage. Yii2's code annotation is very detailed. You can see it as a document. Different drivers (such as redis and ampq) have different configuration items, and the configuration files will be overwritten according to the order in which the environment is introduced and the yii script. Laravel convention is greater than configuration, and dotenv configuration can be used. It is very convenient to replace some drivers (such as Queue, one configuration item in the .env file can be switched, QUEUE_DRIVER=sync/file/redis).

Yii2 advanced template skeleton is suitable for multi-website and multi-template development; Laravel can implement it by itself based on PSR-4 and multi-routing router files.

There are more expansion packages adapted to Laravel than Yii2, but some common packages can be easily used in Yii2 by modifying them yourself (for example, changing them to use Yii::$app-> ;{lib} this way of calling).

The two are different in some coding style habits, such as Yii2's namespace domain name in lowercase, similar to Java package style; configuration key name camel case, etc.

Both have some differences Scaffolding tools (such as gii and artisan), db, query, console and migration support are all available.

But the design ideas between the two are different. Laravel uses more modern and advanced design patterns, such as using ServiceProvider, Facade, Middleware, etc. to support rich extensions and framework interaction decoupling;

Yii2, on the other hand, introduces components more at the application entrance, and these components can be flexibly configured in files (such as changing the base class that implements it, some properties and behaviors), etc.

The above is the detailed content of Which one to use between yii and laravel?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn