Home > php教程 > php手册 > PHP获取当前日期前30天的日期列表

PHP获取当前日期前30天的日期列表

WBOY
Release: 2016-06-13 09:36:43
Original
2131 people have browsed it

最近由于项目要求做一个统计功能,统计当前日期之前的前30天的记录。功能挺简单,下面将本次实现的方法和大家分享一下,方便有需要的朋友们。

其实主要就是用到了php的strtotime这个函数,strtotime('n day'),示例如下:

$days=array();
for($i=0;$i';print_r($days);
Copy after login

结果将显示如下:

Array
(
    [0] => 2014-03-21
    [1] => 2014-03-20
    [2] => 2014-03-19
    [3] => 2014-03-18
    [4] => 2014-03-17
    [5] => 2014-03-16
    [6] => 2014-03-15
    [7] => 2014-03-14
)

您可能感兴趣的文章

  • PHP如何获取一段时间内的日期列表
  • PHP在引号前面添加反斜杠的原因及PHP去除反斜杠的办法,三种办法关闭php魔术引号
  • JavaScript获取当前日期时间同时显示星期几
  • PHP获得指定日期所在星期,所在月的第一天和最后一天
  • php计算两个日期相差多少天(日)的函数
  • php获取指定日期所在星期的开始时间与结束时间的时间戳
  • php根据日期或时间戳获取干支纪年,生肖和星座信息的方法
  • php提取身份证号码中的生日日期以及验证是否为未成年人的函数
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template