From 82f5d251161cdb77527e7cda5906fe167cb59a40 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 21 Sep 2020 18:36:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dsql=E6=89=B9=E9=87=8F?= =?UTF-8?q?=E6=8F=92=E5=85=A5=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/api/Plugs.php | 1 + app/admin/sys.php | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/admin/controller/api/Plugs.php b/app/admin/controller/api/Plugs.php index 9e5ad13c1..2561a2c38 100644 --- a/app/admin/controller/api/Plugs.php +++ b/app/admin/controller/api/Plugs.php @@ -152,6 +152,7 @@ class Plugs extends Controller $this->app->db->name('SystemConfig')->insertAll($alldata); }); $this->app->cache->delete('SystemConfig'); + $GLOBALS['oplogs'] = []; $this->success('清理系统配置成功!'); } catch (HttpResponseException $exception) { throw $exception; diff --git a/app/admin/sys.php b/app/admin/sys.php index 69e4341a4..757a30b54 100644 --- a/app/admin/sys.php +++ b/app/admin/sys.php @@ -45,10 +45,10 @@ try { $matches[2] = substr(str_replace(['`', '\''], '', $matches[2]), 0, 800); $GLOBALS['oplogs'][] = SystemService::instance()->getOplog("添加 {$matches[1]} 数据", $matches[2]); } - } elseif (preg_match('/^INSERT\s*INTO\s*`(.*?)`\s*\((.*?)\)\s*VALUES\s+\((.*?)\)\s*$/i', $sqlstr, $matches)) { + } elseif (preg_match('/^INSERT\s*INTO\s+`(.*?)`\s+(.*?)\s+VALUES\s+(.*?)\s*$/i', $sqlstr, $matches)) { if (stripos($matches[1] = Str::studly($matches[1]), 'SystemOplog') === false) { - $matches[2] = substr(str_replace(['`', '\''], '', $matches[2]), 150); - $matches[3] = substr(str_replace(['`', '\''], '', $matches[3]), 800); + $matches[2] = substr(str_replace(['`', '\''], '', $matches[2]), 0, 200); + $matches[3] = substr(str_replace(['`', '\''], '', $matches[3]), 0, 600); $GLOBALS['oplogs'][] = SystemService::instance()->getOplog("添加 {$matches[1]} 数据", "{$matches[2]} VALUES {$matches[3]}"); } } elseif (preg_match('/^UPDATE\s+`(.*?)`\s+SET\s+(.*?)\s+WHERE\s+(.*?)\s*$/i', $sqlstr, $matches)) {