Assetic是一个PHP的资源管理框架,用于合并和压缩CSS/JS资源。这种方式合并资源可以减少浏览器对资源的请求数、降低资源下载大小、加速网站访问。
示例代码:
<?phpuse Assetic\Asset\AssetCollectio;use Assetic\Asset\FileAsset;use Assetic\Asset\GlobAsset;$js = ew AssetCollectio(array( ew GlobAsset('/path/to/js/*'), ew FileAsset('/path/to/aother.js'),));// the code is merged whe the asset is dumpedecho $js->dump();









评论