gpt4 book ai didi

php - 循环日期函数php

转载 作者:行者123 更新时间:2023-11-30 22:07:02 25 4
gpt4 key购买 nike

我在数据库中有表名“guest_room”,guest_room的字段是“arrival”和“departure”,到达的值为“2016-12-27”,离开的值为“2016-12-31” ".

在我的 php 文件中,我想显示从到达到离开日期的数据,这里是我的代码:

$date = $g[arrival];
$end_date = $g[departure];
while (strtotime($date) <= strtotime($end_date)) {
$date = date ("Y-m-d", strtotime("+1 day", strtotime($date)));
echo "$date<br>";
}

但在我的结果中显示从“2016-12-28”到“2017-01-01”的日期我想要的是,我想显示从“2016-12-27”到“2016-12-31”的日期

我知道我不应该使用 mysql_ 但这没有意义,请帮助我

最佳答案

只需将增量放在循环体的末尾即可:

$date = $g[arrival];
$end_date = $g[departure];
while (strtotime($date) <= strtotime($end_date)) {
// Switched these lines so the increment is at the end of the body
echo "$date<br>";
$date = date ("Y-m-d", strtotime("+1 day", strtotime($date)));
}

关于php - 循环日期函数php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41339075/

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