代码拉取完成,页面将自动刷新
// Package pcstime 时间工具包
package pcstime
import (
"fmt"
"time"
)
var (
// CSTLocation 东八区时区
CSTLocation = time.FixedZone("CST", 8*3600)
)
/*
BeijingTimeOption 根据给定的 get 返回时间格式.
get: 时间格式
"Refer": 2017-7-21 12:02:32.000
"printLog": 2017-7-21_12:02:32
"day": 21
"ymd": 2017-7-21
"hour": 12
默认时间戳: 1500609752
*/
func BeijingTimeOption(get string) string {
//获取北京(东八区)时间
now := time.Now().In(CSTLocation)
year, mon, day := now.Date()
hour, min, sec := now.Clock()
millisecond := now.Nanosecond() / 1e6
switch get {
case "Refer":
return fmt.Sprintf("%d-%d-%d %02d:%02d:%02d.%03d", year, mon, day, hour, min, sec, millisecond)
case "printLog":
return fmt.Sprintf("%d-%d-%d_%02dh%02dm%02ds", year, mon, day, hour, min, sec)
case "day":
return fmt.Sprint(day)
case "ymd":
return fmt.Sprintf("%d-%d-%d", year, mon, day)
case "hour":
return fmt.Sprint(hour)
default:
return fmt.Sprint(time.Now().Unix())
}
}
// FormatTime 将 Unix 时间戳, 转换为字符串
func FormatTime(t int64) string {
tt := time.Unix(t, 0).In(CSTLocation)
year, mon, day := tt.Date()
hour, min, sec := tt.Clock()
return fmt.Sprintf("%d-%02d-%02d %02d:%02d:%02d", year, mon, day, hour, min, sec)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。