How to find the last day of the month from date?

后端 未结 28 1450
孤城傲影
孤城傲影 2020-11-22 08:56

How can I get the last day of the month in PHP?

Given:

$a_date = \"2009-11-23\"

I want 2009-11-30; and given

$a_dat         


        
28条回答
  •  囚心锁ツ
    2020-11-22 09:20

    You could create a date for the first of the next month, and then use strtotime("-1 day", $firstOfNextMonth)

提交回复
热议问题