- 最后登录
- 2013-6-14
- 注册时间
- 2012-8-17
- 阅读权限
- 30
- 积分
- 714
 
- 纳金币
- 714
- 精华
- 0
|
![]()
代码如下:
function CallChannel()
local dateText = os.date("%c");
if dateText~="" then
channel.GetChild(0):SetText(dateText);
end
end
其中的%c可以是以下的一种: %aabbreviated weekday name (e.g., Wed)%Afull weekday name (e.g., Wednesday)%babbreviated month name (e.g., Sep)%Bfull month name (e.g., September)%cdate and time (e.g., 09/16/98 23:48:10)%dday of the month (16) [01-31]%Hhour, using a 24-hour clock (23) [00-23]%Ihour, using a 12-hour clock (11) [01-12]%Mminute (48) [00-59]%mmonth (09) [01-12]%peither "am" or "pm" (pm)%Ssecond (10) [00-61]%wweekday (3) [0-6 = Sunday-Saturday]%xdate (e.g., 09/16/98)%Xtime (e.g., 23:48:10)%Yfull year (1998)%ytwo-digit year (98) [00-99]%%the character '%' |
|