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


erlang rfc3339_to_system_time(DateTimeString)用法及代码示例


rfc3339_to_system_time(DateTimeString) -> integer()
OTP 21.0
rfc3339_to_system_time(DateTimeString, Options) -> integer()
OTP 21.0
类型:
DateTimeString = rfc3339_string()
Options = [Option]
Option = {unit, rfc3339_time_unit()}
rfc3339_string() = [byte(),...]

将 RFC 3339 时间戳转换为系统时间。 RFC 3339 时间戳的数据格式说明为RFC 3339。从 OTP 25.1 开始,时区的分钟部分是可选的。

有效选项:


{unit, Unit}

返回值的时间单位。默认为 second

1> calendar:rfc3339_to_system_time("2018-02-01T16:17:58+01:00").
1517498278
2> calendar:rfc3339_to_system_time("2018-02-01 15:18:02.088Z",
   [{unit, nanosecond}]).
1517498282088000000

相关用法


注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 rfc3339_to_system_time(DateTimeString) -> integer()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。