💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 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'); ?> ``` ```