php資源管理框架assetic簡介

字號:


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