怎么计算出开始日期到结果日期中间有哪些日期??
比如:
开始日期:2013-10-28
结束日期:2013-11-02
包含的日期就有:2013-10-28,2013-10-29,2013-10-30,2013-10-31,2013-11-01,2013-11-02
开始日期:2013-12-29
结束日期:2014-01-02
包含的日期就有:2013-12-29,2013-12-30,2013-12-31,2014-01-01,2014-01-02
使用 mktime 函数不停的加
$start='2013-10-28';$end='2013-11-02';while($start<=$end){ echo $start.'<br>'; $start=date("Y-m-d",strtotime("$start +1 day"));}
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号