php 時間轉化總結

2022-09-16 06:33:07 字數 576 閱讀 8692

iquery外掛程式datepicker獲取的時間函式為"月月/天天/年年年年"(以04/21/2015為例)的形式

(1)轉化為2015-21-04形式:$start = date('y-m-d',strtotime($start1));

(2)計算兩個時間所差天數:$days=floor((strtotime($end)-strtotime($start))/86400);

(3)求所求日期的下一天:$nextday=date("y-m-d",strtotime("$tday +1 day"));

(4)求所求日期的一周後:$nextweekday=date("y-m-d",strtotime("$tday+1 week"));

(5)求下個星期二:date("y-m-d",strtotime("next thursday"));

(6)上個周一: date("y-m-d",strtotime("last monday"));

(7)乙個月前: date("y-m-d",strtotime("last month"));

(8)乙個月後: date("y-m-d",strtotime("+1 month"));

php 時間轉化總結

iquery外掛程式datepicker獲取的時間函式為 月月 天天 年年年年 以04 21 2015為例 的形式 1 轉化為2015 21 04形式 start date y m d strtotime start1 2 計算兩個時間所差天數 days floor strtotime end st...

lua 時間轉化

1 把時間 秒,轉化為xx天xx時xx分xx秒 的形式 把時間 秒,轉化為xx天xx時xx分xx秒 的形式 function converttimeform second local timeday math.floor second 86400 local timehour math.fmod m...

時間型別轉化

jsonformat 於jackson jsonformat pattern yyyy mm dd hh mm ss 結果會有2019 06 15 08 00 00的情況,相差8個小時,因為我們是東八區 北京時間 如下使用timezone,jsonformat pattern yyyy mm dd ...