Erlang中文手册(Erldoc.com)  »  calendar  »  now_to_local_time/1
Erlang并发编程 Erlang/OTP设计原理 Erlang/OTP[pdf] Mnesia用户手册[pdf] Erlang完整手册[en] 官网手册[en] 模块列表 方法列表 随机 Erlang中文社区(BBS) 美女图库

calendar:now_to_local_time/1

把当前时间转换为本地日期时间

用法:

now_to_local_time(Now) -> {{year,month,day},{hour,minute,second}}

内部实现:

-spec now_to_local_time(Now) -> datetime1970() when
      Now :: erlang:timestamp().
now_to_local_time({MSec, Sec, _uSec}) ->
    erlang:universaltime_to_localtime(
      now_to_universal_time({MSec, Sec, _uSec})).

这个函数是将当前时间 Now 转换为本地的日期和时间

calendar:now_to_local_time(os:timestamp()).
阿里云 - 最高1000元通用代金券立即可用
沪ICP备13037221号-9