thinkphp框架动态缓存路径如何更改?
我现在有多个项目,但是不在同一个文件夹下,现在想通用一个动态缓存文件,但是不知道怎么改变thinkphp框架的动态缓存路径。请高手指点。...
我现在有多个项目,但是不在同一个文件夹下,现在想通用一个动态缓存文件,但是不知道怎么改变thinkphp框架的动态缓存路径。请高手指点。
展开
2013-04-01
展开全部
ThinkPHP\Lib\Think\Util\Cache.class.php public function connect($type='',$options=array())
{
if(empty($type)){
$type = C('DATA_CACHE_TYPE');
}
if(Session::is_set('CACHE_'.strtoupper($type))) {
$cacheClass = Session::get('CACHE_'.strtoupper($type));
}else {
$cachePath = dirname(__FILE__).'/Cache/';
$cacheClass = 'Cache'.ucwords(strtolower(trim($type)));
require_cache($cachePath.$cacheClass.'.class.php');
}
if(class_exists($cacheClass)){
$cache = new $cacheClass($options);
}else {
throw_exception(L('_CACHE_TYPE_INVALID_').':'.$type);
}
return $cache;
} $cachePath = dirname(__FILE__).'/Cache/';
修改去吧.
{
if(empty($type)){
$type = C('DATA_CACHE_TYPE');
}
if(Session::is_set('CACHE_'.strtoupper($type))) {
$cacheClass = Session::get('CACHE_'.strtoupper($type));
}else {
$cachePath = dirname(__FILE__).'/Cache/';
$cacheClass = 'Cache'.ucwords(strtolower(trim($type)));
require_cache($cachePath.$cacheClass.'.class.php');
}
if(class_exists($cacheClass)){
$cache = new $cacheClass($options);
}else {
throw_exception(L('_CACHE_TYPE_INVALID_').':'.$type);
}
return $cache;
} $cachePath = dirname(__FILE__).'/Cache/';
修改去吧.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-04-01
展开全部
把它拖一下就可以了!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询