PHP的 first day of 和 last day of

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP的 first day of 和 last day of相关的知识,希望对你有一定的参考价值。

话不多说,先上代码(当前是2017年6月2日)

      echo date("Y-m-d", strtotime("2017-02 first day of")).‘<br>‘;    //2017-02-01
        echo date("Y-m-d", strtotime("2017-02 last day of")).‘<br>‘;      //2017-02-28
        echo date("Y-m-d", strtotime("2017-05 last day of")).‘<br>‘;      //2017-05-31
        echo date("Y-m-d", strtotime("first day of")).‘<br>‘;             //2017-06-01
        echo date("Y-m-d", strtotime("last day of")).‘<br>‘;              //2017-06-30

这是今天无意间阅读别人的代码看到的,这种写法可以智能的判断一个月份的最后一天是几号(28/29/30/31)。

这么多年一直没见到过,网上资料也不多。

今天记下来,以作备用。

 

以上是关于PHP的 first day of 和 last day of的主要内容,如果未能解决你的问题,请参考以下文章

Oracle Where First 和 Last Day 返回 ORA-00904:“NOV”:标识符无效

PHP计算上一个月最后一天当月最后一天下一个月最后一天

pandas使用groupby函数first函数last函数分别获得每个分组的第一行和最后一行数据(first/last row of each group in dataframe)

34. Find First and Last Position of Element in Sorted Array

nth-child,nth-last-child,only-child,nth-of-type,nth-last-of-type,only-of-type,first-of-type,last-of-

lintcode14/458 First/Last Position of Target