Home > Article > Backend Development > How to clear cache of Yii2 assets, clear cache of yii2assets_PHP tutorial
The example in this article describes the method of clearing the cache of Yii2 assets. Share it with everyone for your reference, the details are as follows:
use vendor\myVendorName\myPackageName\assets\AppAsset; AppAsset::register($this);
Add in configuration file:
'components' => [ 'assetManager' => [ 'linkAssets' => true, ], ]
You can clear the cache after refreshing
Readers who are interested in more Yii-related content can check out the special topics on this site: "Introduction to Yii Framework and Summary of Common Techniques", "Summary of Excellent PHP Development Framework", "Basic Tutorial for Getting Started with Smarty Templates", "php Date and Time" Usage Summary", "php object-oriented programming introductory tutorial", "php string (string) usage summary", "php mysql database operation introductory tutorial" and "php common database operation skills summary"
I hope this article will be helpful to everyone’s PHP program design based on the Yii framework.