Add bitwise xor to db_getfunc()
This commit is contained in:
parent
a2d9dd1882
commit
ee38bebbd6
@ -361,6 +361,10 @@ function db_getfunc($f) {
|
|||||||
'regexp'=>array(
|
'regexp'=>array(
|
||||||
DBTYPE_MYSQL=>'REGEXP',
|
DBTYPE_MYSQL=>'REGEXP',
|
||||||
DBTYPE_POSTGRES=>'~'
|
DBTYPE_POSTGRES=>'~'
|
||||||
|
),
|
||||||
|
'^'=>array(
|
||||||
|
DBTYPE_MYSQL=>'^',
|
||||||
|
DBTYPE_POSTGRES=>'#'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$f = strtolower($f);
|
$f = strtolower($f);
|
||||||
|
Reference in New Issue
Block a user