浏览代码

Fix regression Date Backup

stany.ferer 2 年之前
父节点
当前提交
6b9cd858ec
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9 0
      core/class/core.class.php

+ 9 - 0
core/class/core.class.php

@@ -109,6 +109,15 @@ class core
         }
     }
 
+    public static function dateFromTimestamp(int $_timestamp = NULL)
+    {
+        if ($_timestamp == NULL) { 
+            return NULL;
+        } else {
+            return date("Y-m-d H:i:s", $_timestamp);
+        }
+    }
+
     public static function dateWhithoutHours(string $_datetime)
     {
         return explode(" ", $_datetime)[0];