Format UTC

txt = utc.fmt(format, [t])

Convert time into a formatted string.

Parameter Type Description
format string C strftime format string
t integer UTC time value. Default is now.
Returns Type Description
txt string Formatted time string.

e.g.

local s = utc.fmt('%c') -->'Wed Jul 10 15:00:49 2024'
local s = utc.fmt('%Y%m%d') --> 20240710 (Year Month Day)