]> git.mxchange.org Git - friendica.git/blobdiff - include/dbm.php
Resubmit all profiles on directory change
[friendica.git] / include / dbm.php
index 62ebb1af082526b8d12ea6eb4154688ffbedba86..d28d49d63b4b53647392f5d6c928fdba5b76d3bf 100644 (file)
@@ -86,5 +86,22 @@ class dbm {
        public static function esc_array(&$arr, $add_quotation = false) {
                array_walk($arr, 'self::esc_array_callback', $add_quotation);
        }
+
+       /**
+        * Checks Converts any date string into a SQL compatible date string
+        *
+        * @param string $date a date string in any format
+        * @return string SQL style date string
+        */
+       public static function date($date = 'now') {
+               $timestamp = strtotime($date);
+
+               // Don't allow lower date strings as '0001-01-01 00:00:00'
+               if ($timestamp < -62135596800) {
+                       $timestamp = -62135596800;
+               }
+
+               return date('Y-m-d H:i:s', $timestamp);
+       }
 }
 ?>