在我的项目中,erlang:现在被转换为高精度时间戳(bigint)以便在MySQL中存储:
timestamp({Mega, Secs, Micro}) ->
Mega*1000*1000*1000*1000 + Secs * 1000 * 1000 + Micro.
我现在使用以下命令将时间戳转换回原始的{Mega,Secs,Micro}元组:
time_tuple(Timestamp) ->
TimeList = erlang:integer_to_list(Timestamp),
Mega = erlang:list_to_integer(string:substr(TimeList, 1, 4)),
Sec = erlang:list_to_integer(string:substr(TimeList, 5, 6)),
Micro = erlang:list_to_integer(string:substr(TimeList, 11, 6)),
{Mega, Sec, Micro}.
字符串转换/ substr感觉就像一个丑陋的,可能是不正确的黑客。什么是更优雅的方式?
答案 0 :(得分:14)
我可能会遗漏一些东西,但你为什么不只使用除法和模数?
> {Mega, Sec, Micro} = now().
> Timestamp = Mega * 1000000 * 1000000 + Sec * 1000000 + Micro.
> {Mega1, Sec1, Micro1} = {Timestamp div 1000000000000,
Timestamp div 1000000 rem 1000000,
Timestamp rem 1000000}.