> Erlang中文手册 > time_to_seconds/1 返回从午夜以来到指定时间之间的秒数

calendar:time_to_seconds/1

返回从午夜以来到指定时间之间的秒数

用法:

time_to_seconds(Time) -> secs_per_day()

返回从午夜 0 点以来到指定时间之间的秒数。

Now = erlang:now(),
{_Date, Time} = calendar:now_to_local_time(Now),
calendar:time_to_seconds(Time).
calendar:time_to_seconds({19, 7, 42}).