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();
采用這種方式合並資源可以減少浏覽器對資源的請求數、降低資源下載大小、加速站點運行速度。也消除了大量不必要的HTTP請求。