少于1分钟
将以下英文翻译为中文:
https://gohugo.io/functions/time/
Converts a timestamp string into a time.Time
structure.
time INPUT [TIMEZONE]
time
converts a timestamp string with an optional default location into a time.Time
structure so you can access its fields:
|
|
The optional TIMEZONE
parameter is a string that sets a default time zone (or more specific, the location, which represents the collection of time offsets in a geographical area) that is associated with the specified time value. If the time value has an explicit timezone or offset specified, it will take precedence over the TIMEZONE
parameter.
The list of valid locations may be system dependent, but should include UTC
, Local
, or any location in the IANA Time Zone database.
If no TIMEZONE
is set, the timeZone
from site configuration will be used.
|
|
time
to get Month IndexThe following example takes a UNIX timestamp—set as utimestamp: "1489276800"
in a content’s front matter—converts the timestamp (string) to an integer using the int
function, and then uses printf
to convert the Month
property of time
into an index.
The following example may be useful when setting up multilingual sites:
unix-to-month-integer.html
|
|