We now can work with prepared statements

This commit is contained in:
Michael 2017-04-23 23:15:38 +00:00
commit 63b0b05445
2 changed files with 229 additions and 18 deletions

View file

@ -47,6 +47,11 @@ class dbm {
if (is_bool($array)) {
return $array;
}
if (is_object($array)) {
return true;
}
return (is_array($array) && count($array) > 0);
}