gpt4 book ai didi

php - 如何使用 DateTime 在 PHP 中获取后天?

转载 作者:可可西里 更新时间:2023-10-31 22:17:56 25 4
gpt4 key购买 nike

我有一个 Eloquent 查询,目前看起来像这样:

$rides = Ride::where('date', '>=', new \DateTime('today'))
->where('date', '<=', new \DateTime('tomorrow'))
->get();

效果很好,我的问题是,我该如何格式化它:

$rides = Ride::where('date', '>=', new \DateTime('tomorrow'))
->where('date', '<=', new \DateTime('tomorrow + one'))
->get();

这意味着我正在尝试查找日期介于明天和后天之间的结果。任何帮助将不胜感激。

最佳答案

如果你想得到后天可以使用:

new \DateTime('tomorrow + 1day')

您可以在手册页中找到更多信息 'Relative time formats'

关于php - 如何使用 DateTime 在 PHP 中获取后天?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18238394/

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