php strtotime函式的巧用

2021-07-26 02:43:31 字數 598 閱讀 8783

strtotime是乙個非常強大的時間戳函式

將任何英文文字的日期時間描述解析為 unix 時間戳

例如:獲取前乙個月的對應時間戳strtotime("-1 month");下乙個月則對應為strtotime("+1 month");

獲取前一天對應的時間戳strtotime("-1 day");明天則對應為strtotime("+1 day");

獲取前乙個月的後一天strtotime("-1 month +1 day");

獲取一周後對應的時間戳strtotime("+1 week");

獲取一周零兩天四小時兩秒後strtotime("+1 week 2 days 4 hours 2 seconds");

獲取下個星期四strtotime("next thursday");

獲取固定 時間strtotime("15 october 1980");

獲取上近五年strtotime("-5 year");

獲取上個月第一天 date('y-m-01', strtotime('-1 month'));

獲取上個月最後一天date('y-m-t', strtotime('-1 month')); 注:t表示本月的天數

PHP strtotime函式的具體應用方法

實現功能 獲取某個日期的時間戳,或獲取某個時間的時間戳。php strtotime函式將任何英文文字的日期時間描述解析為unix時間戳 將系統時間轉化成unix時間戳 一,獲取指定日期的unix時間戳 strtotime 2009 1 22 示例如下 echo strtotime 2009 1 22...

php strtotime 和 date 日期操作

time 得到的數值是1970 1 1到現在的秒數,strtotime now 也是,兩個值是相同的。thinkphp學習 header content type text html charset utf 8 echo 今天 date y m d echo 昨天 date y m d h i s ...

函式的用法 Excel函式TREND函式的用法

trend函式是乙個線性趨勢的 函式,在已知y值 x值的條件下,x對應的y值 trend共有4個引數,三個必選引數,乙個可選引數 同樣的一組資料第四引數不同,結果也是有區別的 灰色曲線是由第四引數為false時得到的結果生成的曲線。通過斜率與截距函式我們計算出這兩條曲線的斜率與截距,可以看出,第四引...