X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fdbm.php;h=db50dae89c95eefe8796aeb4ddd835491278b75e;hb=0541a62134e8af948f0e4c713a42ca70eaa64f3f;hp=d28d49d63b4b53647392f5d6c928fdba5b76d3bf;hpb=8f7d191bfca553f9d928666e7ef3b52a26911a8e;p=friendica.git diff --git a/include/dbm.php b/include/dbm.php index d28d49d63b..db50dae89c 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); } @@ -104,4 +110,3 @@ class dbm { return date('Y-m-d H:i:s', $timestamp); } } -?>