假设你有两个这样的 Unix 时间戳:
$startDate = 1330581600;
$endDate = 1333170000;
我想遍历该范围内的每一天并输出如下内容:
Start Loop
Day Time Stamp: [Timestamp for the day within that loop]
End Loop
我已经尝试寻找某种类型的功能来做到这一点,但我不确定它是否可能。
因为我喜欢 DateTime、DateInterval 和 DatePeriod,所以这是我的解决方案:
$start = new DateTime();
$end = new DateTime();
$start->setTimestamp(1330581600);
$end->setTimestamp(1333170000);
$period = new DatePeriod($start, new DateInterval('P1D'), $end);
foreach($period as $dt) {
echo $dt->format('Y-m-d');
echo PHP_EOL;
}
起初这似乎令人困惑,但这是一种非常合乎逻辑的方法。
使用DatePeriod ,您可以定义间隔为 1 天的期间的开始和结束(在DateInterval查找格式),然后您可以对其进行迭代。
最后,在每次迭代中,您都会返回一个可以使用的DateTime 对象DateTime::format()
for ($t = $start; $t < $end; $t = strtotime('+1 day', $t)) {
...
}