作者 邓超

x

@@ -182,10 +182,10 @@ function dbWhere(array $where, string $ar = 'and'):string{ @@ -182,10 +182,10 @@ function dbWhere(array $where, string $ar = 'and'):string{
182 } 182 }
183 183
184 }else{ 184 }else{
185 - if($f ==='_'){ 185 + if($f === '_'){
186 $sql[] = $v; 186 $sql[] = $v;
187 }else{ 187 }else{
188 - $sql[] = "{$f} = '". (is_string($v) ? addslashes($v): $v) ."'"; 188 + $sql[] = "{$f} ".($t?:'=')." '". (is_string($v) ? addslashes($v): $v) ."'";
189 } 189 }
190 190
191 } 191 }