美文网首页
php基础的函数strtotime集合date时间修饰语的使用

php基础的函数strtotime集合date时间修饰语的使用

作者: 青丝南开 | 来源:发表于2018-12-25 13:13 被阅读0次

    下面简单说一下我在开发中遇到的问题,以及strtotime结合date的修饰语的使用。原文地址:小时刻个人博客:http://small.aiweimeng.top/index.php/archives/strtotime.html


    在项目中经常会用到时间查询,根据时间范围去查找数据。
    下面简单介绍一下在项目中我遇到的问题;
    在搜索栏中有这么几个选项,今天,昨天,最近7天,上一月,通过这几个时间查出不同数据,
    但是项目中使用strtotime的时候一般出现问题,
    eg:我在11-30号查询上一个月数据的时候只出现了到10-30号的数据,

    strtotime("-1 month");
    

    但是10月有31天啊,检查了半天没什么问题啊。这是咋回事。我靠
    有问题找百度(●'◡'●),找到一篇博客[地址][1]:说php5.3以后增加了一些date的修正语,”first day of” 和 “last day of”,
    然后按照博文说的进行了修改,果然数据出来了。

    下面直接贴他的例子,:D

    var_dump(date("Y-m-d", strtotime("last day of -1 month", strtotime("2017-03-31"))));
    //输出2017-02-28
    var_dump(date("Y-m-d", strtotime("first day of +1 month", strtotime("2017-08-31"))));
    ////输出2017-09-01
    var_dump(date("Y-m-d", strtotime("first day of next month", strtotime("2017-01-31"))));
    ////输出2017-02-01
    var_dump(date("Y-m-d", strtotime("last day of last month", strtotime("2017-03-31"))));
    ////输出2017-02-28
    

    相关文章

      网友评论

          本文标题:php基础的函数strtotime集合date时间修饰语的使用

          本文链接:https://www.haomeiwen.com/subject/zoqflqtx.html