Update database.php

This commit is contained in:
Namhyeon Go 2019-09-30 14:41:12 +09:00 committed by GitHub
parent b4b6a62ee7
commit 06010e34b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -404,6 +404,11 @@ if(!check_function_exists("get_bind_to_sql_select")) {
$s1a[$k] = sprintf("(%s / %s)", $k, $v['div']);
}
// eval (warning: do not use if you did not understand enough)
if(!array_key_empty("eval", $v)) {
$s1a[$k] = sprintf("(%s)", $k, $v['eval']);
}
// concat and delimiter
if(!array_keys_empty("concat", $v)) {
$delimiter = get_value_in_array("delimiter", $v, " ");