Update database.php

This commit is contained in:
Namhyeon Go 2019-04-01 17:47:58 +09:00 committed by GitHub
parent ca411afe8b
commit cfb58f3b29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,7 @@ if(!check_function_exists("get_db_binded_sql")) {
$binded_sql = false;
if(loadHelper("string.utils")) {
$exps = multi_str_split($sql, array(" ", "<>", ">=", "<=", "=", "(", ")", "\r\n", "\n", "\t"));
$exps = multi_str_split($sql, array(" ", "<>", ">=", "<=", "=", ">", "<", "(", ")", "\r\n", "\n", "\t", "'", "\""));
foreach($exps as $k=>$v) {
$exps[$k] = get_db_binded_param($v, $bind);
}