常用的shopNC部分大写字母函数

C 方法

作用:取得系统配置信息

语法: C($key)

参数:    string $key 取得下标值

示例:

C('site_url') 取得 $config['site_url'] 值

C('cache.type') 取得 $config['cache']['type'] 值


F 方法

作用:文件数据读取和保存 字符串、数组

语法:F($name, $value='', $path = 'cache',$ext = '.php')

参数:    $name 文件名称(不含扩展名)

$value 待写入文件的内容

$path 写入cache的目录

$ext 文件扩展名

       示例:

F('setting');    //取得setting缓存

F('setting',$data);    //将$data数组生成到setting文件缓存



H 方法

作用:读/写 缓存方法

语法:H($key, $value='', $cache_type='', $expire=null, $args=null)

参数:    $key 缓存名称

$value 缓存内容

$type     缓存类型,允许值为 file,memcache,xcache,apc,eaccelerator,可以为空,默认为file缓存

$expire 缓存周期

$args 扩展参数

示例:

       H('setting'); // 取得缓存

H('setting',true); // 生成setting缓存并返回缓存结果

H('setting',null); // 清空setting缓存

H('setting',true,'file'); // 生成setting文件缓存

H('setting',true,'memcache'); // 生成setting缓存到memcache



L 方法

作用:快速调用语言包

语法:string L($key = '')

参数:$rec_id 推荐位ID


你可能感兴趣的:(扩展名,字符串,null,setting,字母)