This commit is contained in:
2021-02-26 11:05:57 +08:00
parent c746907884
commit 4bd2c7041d
+1 -1
View File
@@ -172,7 +172,7 @@ trait Builder
if (!is_numeric($key)) {
$value = is_numeric($value) ? $value : '\'' . $value . '\'';
$array[] = sprintf("%s='%s'", $key, $value);
$array[] = sprintf("%s=%s", $key, $value);
} else if (is_array($value)) {
$array = $this->_arrayMap($value, $array);
} else {