# 獲取當前月的天數
$month_now_days
=date
('t');
# 獲取某月的天數
$month_certain_days
=date
('t'
,strtotime
('1993-8-1'))
;# 獲取下個月的今天的日期
$next_month_now_date
=date
('y-m-d'
,strtotime
('next month'))
;# 獲取上個月的今天的日期
$last_month_now_date
=date
('y-m-d'
,strtotime
('last month'))
;# 獲取當前月第一天的日期
$now_month_first_date
=date
('y-m-1');
# 獲取當前月最後一天的日期
$now_month_last_date
=date
('y-m-d'
,strtotime
(date
('y-m-1'
,strtotime
('next month'))
.'-1 day'))
;# 獲取上個月第一天的日期
$last_month_first_date
=date
('y-m-1'
,strtotime
('last month'))
;# 獲取上個月最後一天的日期
$last_month_end_date
=date
('y-m-d'
,strtotime
(date
('y-m-1').
'-1 day'))
;# 獲取下個月第一天的日期
$next_month_first_date
=date
('y-m-1'
,strtotime
('next month'))
;# 獲取下個月最後一天的日期
$next_month_last_date
=date
('y-m-d'
,strtotime
(date
('y-m-1'
,strtotime
('next month'))
.'+1 month -1 day'))
;# 根據日期獲取當前月份第一天
$firstday
=date
('y-m-01'
,strtotime
($date))
;# 根據日期獲取當前月份最後一天
$lastday
=date
('y-m-d'
,strtotime
("$firstday
+1 month -1 day"))
;return
array
($firstday
,$lastday
);
php 時間處理
php view plain copy print?echo 今天 date y m d echo 昨天 date y m d strtotime 1 day echo 明天 date y m d strtotime 1 day echo 一周後 date y m d strtotime 1 wee...
php時間處理
php時間處理 使用strtotime mktime 配合 date 原理 計算時間戳 date格式化 看例子 先看簡單的 echo date default timezone set prc echo 今天 date y m d time echo 今天 date y m d strtotime ...
PHP 時間處理
date default timezone set asia shanghai 設定時區 一 格式化時間函式date 返回string params string date string param1,intparam1,inttime 1.date函式 對比printf sprintf 函式 da...