package time_util
import (
"fmt"
"time"
)//timeformat 時間格式
type timeformat int
const (
timeteplate1 timeformat = iota
timeteplate2
timeteplate3
timeteplate4
timeteplate5
)func (t timeformat) string() string
}//format 時間轉字串
func format(times time.time, f timeformat) string
//unixformat 時間戳轉字串
func unixformat(sec int64, f timeformat) string
//parseinlocation 字串轉時間
func parseinlocation(str string, f timeformat) (time.time, error)
//now 獲取當前時間
func now() time.time
//unix 時間轉成時間戳(秒)
func unix(times time.time) int64
//unixnano 時間轉成時間戳(毫秒)
func unixnano(times time.time) int64
//unixtotime 時間戳轉化成時間
func unixtotime(timestamp int64) time.time
//stringtounix 字串轉時間戳(秒)
func stringtounix(str string, f timeformat) int64
//stringtounixnano 字串轉時間戳(毫秒)
func stringtounixnano(str string, f timeformat) int64
//add 新增日期
func add(ts time.time, d time.duration) time.time
//adddate 新增日期
func adddate(ts time.time, years, months, days int) time.time
func main()
vi 操作筆記
1.關於退出 wq 強制儲存退出 wq 儲存退出 x 作用和 wq 一樣 zz 作用和 wq一樣,注意z是大寫的,並且不是在命令模式 q 退出 q 強制退出 2.關於移動 h 在當前行向左移動乙個字元 j 移動到下一行 k 移動到上一行 l 在當前行向右移動乙個字元 ctrl f 向前滾動一頁 ct...
mysql操作筆記
user01只能本地訪問 create user user01 localhost identified by password1 user02可以遠端訪問 create user user02 identified by password1 建立資料庫 create database db01 修...
mysql操作筆記
一 select user 顯示的為當前使用的 user 及host use mysql select distinct user from user 顯示該資料庫授權登陸的使用者名稱 其實還有 host 的限制 mysql 中新增使用者 新建資料庫 使用者授權 刪除使用者 修改密碼 注意每行後邊都...