Skip to content

Instantly share code, notes, and snippets.

@uhziel
Created March 26, 2012 03:47
Show Gist options
  • Save uhziel/2202779 to your computer and use it in GitHub Desktop.
Save uhziel/2202779 to your computer and use it in GitHub Desktop.
convert time_t to calendar time in Lua
function time_t2calendartime(time)
return os.date("%Y-%m-%d %H:%M:%S", time)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment