1. 程式人生 > >實際開發--->php時間函數

實際開發--->php時間函數

del ont mce end sta 函數 第一天 tar -m

當前日期(例:2017-10-04):date(‘Y-m-d‘,time());

當前時間戳:strtotime(date(‘Y-m-d H-i-s‘,time());

當前年月(例:2017-10):$now=date(‘Y-m‘,time());

當月第一天(例:2017-10-01):$month_start=date("Y-m-01",strtotime($now));

當月最後一天(例:2017-10-31):$month_end=date("Y-m-d",strtotime("$now+1 month -1 day"));

把當月第一天轉換為時間戳:strtotime($month_start."00:00:00");

把當月最後一天轉換為時間戳:strtotime($month_end."23:59:59");

當前年份(例:2017):$year=date(‘Y‘);

當年一月一日零點:strtotime(date("Y-01-01 00:00:00",strtotime($year)));

當年十二月三十一日23:59:59:strtotime(date("Y-12-31 23:59:59",strtotime($year)));

實際開發--->php時間函數