carbon 是一個輕量級、語義化、對開發者友好的Golang時間處理庫,支持鏈式調用、農曆和gorm、xorm等主流ormgit
若是您以爲不錯,請給個star吧github
github:github.com/golang-module/carbongolang
gitee:gitee.com/go-package/carbon優化
carbon.Now().DiffForHumans()) // just now carbon.Now().SubYears(1).DiffForHumans()) // 1 years ago carbon.Now().SubYears(2).DiffForHumans()) // 2 year ago carbon.Now().AddYears(1).DiffForHumans()) // in 1 year carbon.Now().AddYears(2).DiffForHumans()) // in 2 years // 對人類友好的可讀格式時間差(指定語言) carbon.Now().SetLocale("zh-CN").DiffForHumans()) // 剛剛 carbon.Now().SubMonths(1).SetLocale("zh-CN").DiffForHumans()) // 1 月前 carbon.Now().AddMonths(2).SetLocale("zh-CN").DiffForHumans()) // 2 月後