X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fdbm.php;h=de4aef7d2b196cf89a5bcb5578da6e98b45285bf;hb=791fc1d8b3c3cc6bb4e62ef4b6f81bb99c1d45ed;hp=d28d49d63b4b53647392f5d6c928fdba5b76d3bf;hpb=65f809f5cb0e8c30327e7dca0f54b4ee53cdd6e2;p=friendica.git diff --git a/include/dbm.php b/include/dbm.php index d28d49d63b..de4aef7d2b 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 { /** @@ -40,14 +41,19 @@ class dbm { * Checks if $array is a filled array with at least one entry. * * @param $array mixed A filled array with at least one entry - * @return Whether $array is a filled array + * @return Whether $array is a filled array or an object with rows */ public static function is_result($array) { // It could be a return value from an update statement if (is_bool($array)) { return $array; } - return (is_array($array) && count($array) > 0); + + if (is_object($array)) { + return dba::num_rows($array) > 0; + } + + 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); } } -?>