From 0455b89a44ab0c591a4e2762a6ac52c641d0a198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Thu, 25 Feb 2021 18:03:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Database/SqlBuilder.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Database/SqlBuilder.php b/Database/SqlBuilder.php index 840e4720..1d0894a9 100644 --- a/Database/SqlBuilder.php +++ b/Database/SqlBuilder.php @@ -71,6 +71,8 @@ class SqlBuilder extends Component public function mathematics(array $attributes, $opera = '+'): bool|array { $string = $array = []; + + var_dump($attributes); foreach ($attributes as $attribute => $value) { $string[] = $attribute . '=' . $attribute . $opera . $value; }