日期到兆秒
有没有简单的方法可以从 erlang 日期时间表示法转换为 now/0 表示法?
基本上我需要这个函数的反函数:
{Date, Time} = calendar:now_to_datetime(now()).
所以像
{Megaseconds, Seconds, Microsecods} = datetime_to_now({Date, Time})
Is there any easy way to convert from erlang datetime notation to the now/0 notation?
Basically I need the inverse of this function:
{Date, Time} = calendar:now_to_datetime(now()).
So something like
{Megaseconds, Seconds, Microsecods} = datetime_to_now({Date, Time})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我收回我的问题。我的 google-fu 似乎还没有预热。以下正是我想要的。
I retract my question. My google-fu was not warmed up yet it seems. The Following does exactly what I want.