table.concat(os.date("*t"), ":",4,6)

知道为什么 ^this^ 或 ˇthisˇ
test = os.date("*t")
table.concat(test, ":" , 4 , 6 )

不起作用?

最佳答案

table.concat 适用于数字索引表。而 os.date '*t' 的输出将是 table like :

hour    18
min 20
wday    1
day 2
month   3
year    2014
sec 49
yday    61
isdst   false

关于date - os.time() Lua 生成的错误处理表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22131362/

10-16 19:04