Assetic 是一个 PHP 的资源管理框架,用于合并和压缩 CSS/JS 资源。这种方式合并资源可以减少浏览器对资源的请求数、降低资源下载大小、加速网站访问。

示例代码:

<?php
 
use Assetic\Asset\AssetCollection;
use Assetic\Asset\FileAsset;
use Assetic\Asset\GlobAsset;
 
$js new AssetCollection(array(
    new GlobAsset('/path/to/js/*'),
    new FileAsset('/path/to/another.js'),
));
 
// the CODE is merged when the asset is dumped
Echo $js->dump();
PHP资源管理框架Assetic简介
本文为大家介绍的是PHP资源管理框架Assetic简介,感兴趣的同学参考下。

发布于 2015-01-21 03:53:52 | 122 次阅读


Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务