🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# cache\_new() ## cache\_new() ``` <pre class="calibre11">``` cache_new($cacheconf) ``` ``` #### 【功能】 根据指定的配置参数,实例化一个 Cache 类。 一般不需要调用此函数,除非需要多个 Cache 实例。 #### 【参数】 ``` <pre class="calibre11">``` $cacheconf:Cache 配置数据 ``` ``` #### 【用例】 ``` <pre class="calibre11">``` <?php $cacheconf = array ( 'enable' => true, 'type' => 'xcache', 'xcache' => array ( 'cachepre' => 'pre_', ), ); include './xiunophp/xiunophp.php'; $newcache = cache_new($cacheconf); $newcache->set('key1', 'value1'); ?> ``` ```