Lua獲取系統時間和時間格式化方法及格式化引數

2022-09-21 02:24:07 字數 1257 閱讀 2442

一、系統當前時間對應的時間戳

複製** **如下:

local ntime = os.time

print(ntime)

二、格式化時間顯示,參考下表

常用於設定header等

複製** **如下:

ngx.header["last-modified:"]  = os.date("%a, %d %b %y %x gmt")

ngx.header["content-type"]    = "text/html; charset=utf-8"

ngx.header["cache-control"]   = "public"

ngx.header["expires"]    &nbsnjbywnvurp;    = os.date("%a, %d %b %y %x gmt", os.time() + cdncachetime)

%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]

%m程式設計客棧

minute (48) [00-59]

%mmonth (09) [01-12]

%peither "am" or "pm" (pm)

%ssecond (10) [00-61]

%wweekday (3) [0-6 = sunday-saturday]

njbywnvur

%xdate (e.g., 09/16/98)

%xtime (e.g., 23:48:10)

%yfull year (1998)

%ytwo-digit year (98) [00-99]

the character '%'

www.cppcns.com

本文標題: lua獲取系統時間和時間格式化方法及格式化引數

本文位址:

獲取當前時間和時間格式化

1.獲取當前時間 var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 m...

時間獲取格式化

var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 所以獲取當前月份是mydate.getmonth 1 mydate.ge...

格式化系統時間

在進行資料庫程式設計時我們總會遇到時間格式問題,往往讓人頭痛不已,其實delphi有乙個很好的解決方如下 procedure formatcomputerdatetime begin dateseparator shortdateformat yyyy m d longdateformat yyyy...