vali 6 年之前
父節點
當前提交
35fcd39f2d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      application/index/controller/Index.php

+ 1 - 1
application/index/controller/Index.php

@@ -53,7 +53,7 @@ class Index extends Controller
     public function systime()
     {
         $now = time();
-        $time = strtotime(date('Y-m-d', $now)) . ',' . date('Y-m-d H:i', $now);
+        $time = date('Y-m-d H:i', $now);
         return json(['code' => 1, 'data' => ['time' => $time], 'msg' => '成功']);
     }