From 1e7a11138986233af6f302f9896a8988a26362cc Mon Sep 17 00:00:00 2001 From: lewis <604446095@qq.com> Date: Thu, 21 Aug 2025 09:57:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BC=93=E5=AD=98tag?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/cache/BaseCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/cache/BaseCache.php b/app/common/cache/BaseCache.php index 43e1d02..74e0451 100644 --- a/app/common/cache/BaseCache.php +++ b/app/common/cache/BaseCache.php @@ -15,7 +15,7 @@ class BaseCache protected $cache; public function __construct(){ - $this->tagName = get_class($this); + $this->tagName = str_replace('\\', '_', get_class($this)); }