سؤال

How can I get the current UTC time using a Lua script and convert it to human readable text?

هل كانت مفيدة؟

المحلول

Try os.date("!%c"). Here ! means UTC and %c means full date in standard format. For other options, see http://www.lua.org/manual/5.2/manual.html#pdf-os.date.

curTime = os.time(); print("os.date(): "..os.date('%Y-%m-%d-%H:%M:%S', curTime));  
print("os.date(!): "..os.date('!%Y-%m-%d-%H:%M:%S GMT', curTime))
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top