timestamp() -> Timestamp
類型:
Timestamp = erlang:timestamp()
時間戳 = {兆秒、秒、微秒}
返回當前值操作係統係統時間格式與timestamp()。元組可以與函數一起使用calendar:now_to_universal_time/1
或者calendar:now_to_local_time/1
獲取日曆時間。使用日曆時間以及MicroSecs
該函數返回元組的一部分,允許您以高分辨率記錄時間戳,並與操作係統其餘部分的時間一致。
以“DD Mon YYYY HH:MM:SS.mmmmmm”格式格式化字符串的代碼示例,其中 DD 是月份中的某一天,Mon 是文本月份名稱,YYYY 是年份,HH:MM:SS 是時間, mmmmmm 是六個位置的微秒:
-module(print_time).
-export([format_utc_timestamp/0]).
format_utc_timestamp() ->
TS = {_,_,Micro} = os:timestamp(),
{{Year,Month,Day},{Hour,Minute,Second}} =
calendar:now_to_universal_time(TS),
Mstr = element(Month,{"Jan","Feb","Mar","Apr","May","Jun","Jul",
"Aug","Sep","Oct","Nov","Dec"}),
io_lib:format("~2w ~s ~4w ~2w:~2..0w:~2..0w.~6..0w",
[Day,Mstr,Year,Hour,Minute,Second,Micro]).
該模塊可以如下使用:
1> io:format("~s~n",[print_time:format_utc_timestamp()]).
29 Apr 2009 9:55:30.051711
操作係統係統時間也可以通過以下方式檢索system_time/0
和system_time/1
.
相關用法
- erlang timestamp()用法及代碼示例
- erlang time()用法及代碼示例
- erlang titlecase(String :: unicode:chardata())用法及代碼示例
- erlang tan用法及代碼示例
- erlang tuple_to_list用法及代碼示例
- erlang term_to_binary用法及代碼示例
- erlang table(Table)用法及代碼示例
- erlang term_to_binary(Term)用法及代碼示例
- erlang throw(Any)用法及代碼示例
- erlang tl(List)用法及代碼示例
- erlang trace_pattern(MFA :: send, MatchSpec, FlagList :: [])用法及代碼示例
- erlang trace_pattern(MFA :: 'receive', MatchSpec, FlagList :: [])用法及代碼示例
- erlang trunc(Number)用法及代碼示例
- erlang tuple_size(Tuple)用法及代碼示例
- erlang tuple_to_list(Tuple)用法及代碼示例
- erlang to_list(Q :: queue(Item))用法及代碼示例
- erlang take(Key, Orddict)用法及代碼示例
- erlang table(Name)用法及代碼示例
- erlang traverse(Name, Fun)用法及代碼示例
- erlang take(Key, Map1)用法及代碼示例
- erlang to_list(MapOrIterator)用法及代碼示例
- erlang take(String, Characters)用法及代碼示例
- erlang to_float(String)用法及代碼示例
- erlang to_integer(String)用法及代碼示例
- erlang to_graphemes(String :: unicode:chardata())用法及代碼示例
注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 timestamp() -> Timestamp。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。