PHP 日期格式化(獲取上月第一天 最後一天等)

2021-10-03 12:53:58 字數 1209 閱讀 2166

1.獲取上個月第一天及最後一天.

echo date(『y-m-01』, strtotime(』-1 month』));

echo 「

」;echo date(『y-m-t』, strtotime(』-1 month』));

echo 「

」;2.獲取當月第一天及最後一天.

$begindate=date(『y-m-01』, strtotime(date(「y-m-d」)));

echo beg

inda

te;e

cho"

/>";

echo

date

(′y−

m−d′

,str

toti

me("

begindate; echo "

"; echo date('y-m-d', strtotime("

begind

ate;

echo

"/>";

echo

date

(′y−

m−d′

,str

toti

me("

begindate +1 month -1 day"));

echo 「

」;3.獲取當天年份、月份、日及天數.

echo " 本月共有:".date(「t」).「天」;

echo " 當前年份".date(『y』);

echo " 當前月份".date(『m』);

echo " 當前幾號".date(『d』);

echo 「

」;4.使用函式及陣列來獲取當月第一天及最後一天,比較實用

function getthemonth($date)

$today = date(「y-m-d」);

d ay

=get

them

onth

(day=getthemonth(

day=ge

tthe

mont

h(today);

echo "當月的第一天: ".day

[0].

"當月的

最後一天

:"

.day[0]." 當月的最後一天: ".

day[0]

."當月

的最後一

天:".

PHP 日期格式化(獲取上月第一天 最後一天等)

1.獲取上個月第一天及最後一天.echo date y m 01 strtotime 1 month echo echo date y m t strtotime 1 month echo 2.獲取當月第一天及最後一天.begindate date y m 01 strtotime date y m...

js格式化日期 獲取當月最後一天 第一天

最近專案中使用了大量關於日期的操作遂將其整理如下 格式化日期 param fmt 日期型別 預設為年月日 yyyy mm dd date.prototype.format function fmt yyyy mm dd if y test fmt for var key in date return...

日期獲取本月第一天和最後一天

getfullyear 日期物件獲取年份 yyyy getmonth 獲取月份0 11 getdate 獲取一月中的第幾天 1 31 setdate num 傳數字設定本月日期第幾天 newdate year month,day,hours,可以傳字串或數字 newdate fullyear,mon...