如何在本月的第一天在PHP?

我想要做的是获得当月的第一个date

以下是如何获得当前月份的最后一天

date('dm-Y', strtotime('last day of this month')) 

我试图使用这个,但它不适合我

 date('dm-Y', strtotime('first day of this month')) 

任何想法如何解决我的问题?

date('01-m-Y')应该这样做;)

 date('dm-Y', strtotime(date('Ym-1'))); 

怎么样 :

 date('1-m-Y',strtotime('this month')); 
 $firstDayUTS = mktime (0, 0, 0, date("m"), 1, date("Y")); $lastDayUTS = mktime (0, 0, 0, date("m"), date('t'), date("Y")); $firstDay = date("dmY", $firstDayUTS); $lastDay = date("dmY", $lastDayUTS);