当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Elixir DateTime.from_unix!用法及代码示例


Elixir语言中 DateTime.from_unix! 相关用法介绍如下。

用法:

from_unix!(integer, unit \\ :second, calendar \\ Calendar.ISO)
@spec from_unix!(integer(), :native | System.time_unit(), Calendar.calendar()) :: t()

将给定的 Unix 时间转换为 DateTime

整数可以根据 System.convert_time_unit/3 给出不同的单位,内部会转换为微秒。

Unix 时间始终采用 UTC,因此 DateTime 将以 UTC 形式返回。

例子

# An easy way to get the Unix epoch is passing 0 to this function
iex> DateTime.from_unix!(0)
~U[1970-01-01 00:00:00Z]

iex> DateTime.from_unix!(1_464_096_368)
~U[2016-05-24 13:26:08Z]

iex> DateTime.from_unix!(1_432_560_368_868_569, :microsecond)
~U[2015-05-25 13:26:08.868569Z]

iex> DateTime.from_unix!(143_256_036_886_856, 1024)
~U[6403-03-17 07:05:22.320312Z]

相关用法


注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 DateTime.from_unix!(integer, unit \\ :second, calendar \\ Calendar.ISO)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。