PHP资源管理框架Assetic简介
程序员文章站
2023-12-12 20:13:28
assetic是一个php的资源管理框架,用于合并和压缩 css/js 资源。示例代码如下:复制代码 代码如下:
assetic是一个php的资源管理框架,用于合并和压缩 css/js 资源。
示例代码如下:
采用这种方式合并资源可以减少浏览器对资源的请求数、降低资源下载大小、加速站点运行速度。也消除了大量不必要的http请求。
示例代码如下:
复制代码 代码如下:
<?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();
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();
采用这种方式合并资源可以减少浏览器对资源的请求数、降低资源下载大小、加速站点运行速度。也消除了大量不必要的http请求。