From 272a680bd7d89e7704508e487761a5ca8016f08c Mon Sep 17 00:00:00 2001 From: thinkphp Date: Fri, 11 Dec 2015 23:05:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base.php b/base.php index 2c576d1d..db7295ce 100644 --- a/base.php +++ b/base.php @@ -290,7 +290,7 @@ function S($name, $value = '', $options = null) return think\Cache::get($name); } elseif (is_null($value)) { // 删除缓存 - return $think\Cache::rm($name); + return think\Cache::rm($name); } else { // 缓存数据 if (is_array($options)) {