获取本周日期列表

时间:2011-05-10 10:24:48

标签: php html datetime date

  

可能重复:
  how to find the dates between two dates specified

我希望得到今天的日期和接下来的6天。我希望将其显示为HTML列表。所以说今天是10月1日,我想回来。

<ul>
        <li>01/10/2011</li>
        <li>02/10/2011</li>
        <li>03/10/2011</li>
        <li>04/10/2011</li>
        <li>05/10/2011</li>
        <li>06/10/2011</li>
        <li>07/10/2011</li>
</ul>

1 个答案:

答案 0 :(得分:0)

从PHP文档:

  

可以一起使用date()和mktime()来查找将来或过去的日期。

<?php
$tomorrow  = mktime(0, 0, 0, date("m")  , date("d")+1, date("Y"));
$lastmonth = mktime(0, 0, 0, date("m")-1, date("d"),   date("Y"));
$nextyear  = mktime(0, 0, 0, date("m"),   date("d"),   date("Y")+1);
?>

请参阅here