You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

helpler_time.go 472B

123456789101112131415161718192021
  1. // Copyright 2017 The Xorm Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package xorm
  5. import "time"
  6. const (
  7. zeroTime0 = "0000-00-00 00:00:00"
  8. zeroTime1 = "0001-01-01 00:00:00"
  9. )
  10. func formatTime(t time.Time) string {
  11. return t.Format("2006-01-02 15:04:05")
  12. }
  13. func isTimeZero(t time.Time) bool {
  14. return t.IsZero() || formatTime(t) == zeroTime0 ||
  15. formatTime(t) == zeroTime1
  16. }