gpt4 book ai didi

php - 生成最近两周的日期范围?

转载 作者:行者123 更新时间:2023-12-03 04:00:34 24 4
gpt4 key购买 nike

我想生成2个DATETIME,代表从周日到周六2x的最近两周,它不应该包括当前不完整的一周。

感谢您的帮助。

最佳答案

使用精彩的 DateTime 类来进行工作:

<?php

$end = new DateTime('last Sunday'); // note that the end date is excluded from a DatePeriod
$start = clone $end;
$start->sub(new DateInterval('P14D'));

foreach (new DatePeriod($start, new DateInterval('P1D'), $end) as $day) {
echo $day->format('r'), "\n";
}

关于php - 生成最近两周的日期范围?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4845789/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com