静态缓存

静态缓存是基于函数完成的,提供了3个函数来操作。

§   设置缓存

int cache_write(string $file, array $array, string $path = null)
$file                            
缓存文件名
$array             
缓存内容
$path              
缓存文件存储路径,默认存储在 CACHE_PATH
@return                      
写入缓存的字节数,如果写入缓存失败返回 FALSE

§   读取缓存

int cache_write(string $file, string $path = null, $iscachevar = 0)
$file                            
缓存文件名
$path              
缓存文件存储路径,默认存储在 CACHE_PATH
$iscachevar     
是否对缓存的数据进行缓存,缓存后读取时直接由PHP中的内置数组返回值,不再读取缓存文件
@return                      
写入缓存的字节数,如果写入缓存失败返回 FALSE

§   删除缓存

int cache_delete(string $file, , string $path = null)
$file                            
缓存文件名
$path              
缓存文件存储路径,默认存储在 CACHE_PATH
@return                      
文件删除成功返回TRUE,删除失败返回 FALSE



Copyright ©2009 - 2014 CmsTop.Com.All rights reserved.
思拓合众