在Lua中處理日期和時間通常需要使用標準庫中的os
模塊和os.date
函數。以下是一些可以幫助處理日期和時間的示例代碼:
local currentDateTime = os.date("%Y-%m-%d %H:%M:%S")
print(currentDateTime)
local timestamp = os.time()
local formattedDateTime = os.date("%A, %b %d %Y %H:%M:%S", timestamp)
print(formattedDateTime)
local timestamp = os.time({year=2022, month=12, day=25, hour=10, min=30, sec=0})
local formattedDateTime = os.date("%A, %b %d %Y %H:%M:%S", timestamp)
print(formattedDateTime)
local timestamp = os.time({year=2022, month=12, day=25, hour=0, min=0, sec=0})
local weekday = os.date("%A", timestamp)
print(weekday)
通過使用os.date
函數和日期格式字符串,可以靈活地處理日期和時間的格式化和轉換。