X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fdbm.php;h=bda62f34c2c1d6539bb2c757c7344deec16bfa87;hb=0cd9db9cb7f4c96f597e37590a536eaae123238d;hp=d28d49d63b4b53647392f5d6c928fdba5b76d3bf;hpb=28b3fa4f1fad67816ae6904f94a20d0ee58b2ced;p=friendica.git diff --git a/include/dbm.php b/include/dbm.php index d28d49d63b..bda62f34c2 100644 --- a/include/dbm.php +++ b/include/dbm.php @@ -2,6 +2,7 @@ /** * @brief This class contain functions for the database management * + * This class contains functions that doesn't need to know if pdo, mysqli or whatever is used. */ class dbm { /** @@ -47,6 +48,11 @@ class dbm { if (is_bool($array)) { return $array; } + + if (is_object($array)) { + return true; + } + return (is_array($array) && count($array) > 0); } @@ -70,7 +76,7 @@ class dbm { if (is_bool($value)) { $value = ($value ? 'true' : 'false'); - } elseif (is_float($value) OR is_integer($value)) { + } elseif (is_float($value) || is_integer($value)) { $value = (string)$value; } else { $value = "'".dbesc($value)."'"; @@ -104,4 +110,3 @@ class dbm { return date('Y-m-d H:i:s', $timestamp); } } -?>