mirror of
https://gitee.com/dromara/carbon.git
synced 2024-11-29 18:57:37 +08:00
更新文档
This commit is contained in:
parent
b54403bc7d
commit
41a1868f98
@ -11,7 +11,7 @@
|
||||
|
||||
一个轻量级、语义化、对开发者友好的 golang 时间处理库,支持链式调用
|
||||
|
||||
Carbon 已被 [awesome-go](https://github.com/avelino/awesome-go#date-and-time "awesome-go") 收录, 如果您觉得不错,请给个 star 吧
|
||||
Carbon 已被 [awesome-go-cn](https://github.com/yinggaozhen/awesome-go-cn#日期和时间 "awesome-go-cn") 收录, 如果您觉得不错,请给个 star 吧
|
||||
|
||||
[github.com/golang-module/carbon](https://github.com/golang-module/carbon "github.com/golang-module/carbon")
|
||||
|
||||
@ -19,14 +19,14 @@ Carbon 已被 [awesome-go](https://github.com/avelino/awesome-go#date-and-time "
|
||||
|
||||
#### 安装使用
|
||||
|
||||
##### Golang 版本大于等于 1.16
|
||||
##### Golang 版本大于等于 1.16 (推荐)
|
||||
|
||||
```go
|
||||
// 使用 github 库
|
||||
go get -u github.com/golang-module/carbon/v2
|
||||
|
||||
import (
|
||||
"github.com/golang-module/carbon/v2"
|
||||
"github.com/golang-module/carbon/v2"
|
||||
)
|
||||
|
||||
// 使用 gitee 库
|
||||
@ -37,7 +37,7 @@ import (
|
||||
)
|
||||
```
|
||||
|
||||
##### Golang 版本小于 1.16
|
||||
##### Golang 版本小于 1.16 (必须)
|
||||
|
||||
```go
|
||||
// 使用 github 库
|
||||
|
@ -19,7 +19,7 @@ Carbon は [awesome-go](https://github.com/avelino/awesome-go#date-and-time "awe
|
||||
|
||||
#### インストール使用
|
||||
|
||||
##### Golangバージョンは1.16以上です
|
||||
##### Golangバージョンは1.16以上です (推奨)
|
||||
|
||||
```go
|
||||
// github倉庫を使う
|
||||
@ -37,7 +37,7 @@ import (
|
||||
)
|
||||
```
|
||||
|
||||
##### Golangバージョンは1.16より小さいです
|
||||
##### Golangバージョンは1.16より小さいです (必要)
|
||||
|
||||
```go
|
||||
// github倉庫を使う
|
||||
|
@ -22,7 +22,7 @@ it is helpful, please give me a star
|
||||
|
||||
#### Installation
|
||||
|
||||
##### Go version >= 1.16
|
||||
##### Go version >= 1.16 (recommend)
|
||||
|
||||
```go
|
||||
// By github
|
||||
@ -40,7 +40,7 @@ import (
|
||||
)
|
||||
```
|
||||
|
||||
##### Go version < 1.16
|
||||
##### Go version < 1.16 (must)
|
||||
|
||||
```go
|
||||
// By github
|
||||
@ -1342,8 +1342,8 @@ lang.SetLocale("en")
|
||||
|
||||
c := carbon.SetLanguage(lang)
|
||||
if c.Error != nil {
|
||||
// Error handle...
|
||||
log.Fatal(err)
|
||||
// Error handle...
|
||||
log.Fatal(err)
|
||||
}
|
||||
|
||||
c.Now().AddHours(1).DiffForHumans() // 1 hour from now
|
||||
|
Loading…
Reference in New Issue
Block a user