PHP MYSQL日期范围错过了几天

时间:2016-07-28 10:24:31

标签: php mysql date

在DB中,还有第26天和第31天,但没有更改为OK。 只有第3天才变好。

这段代码我哪里错了?

代码:

*$from   = date("Y-m-01"); 
$to     = date("Y-m-t"); // last day current month
$query  = "SELECT date FROM tbl_data WHERE date BETWEEN '$from' AND '$to' order by date DESC";
$result = mysqli_query($mysqli,$query);
while ($row  = mysqli_fetch_array($result, MYSQL_ASSOC))
{
    $date =  date_create_from_format('Y-m-d', $row['date']);
}
$cursor =  date_create_from_format('Y-m-d', $from);
$finish =  date_create_from_format('Y-m-d', $to);
while ($cursor != $date)
    {
        echo date_format($cursor,'Y-m-d') . "--- Missed <br>";
        date_modify($cursor, '+1 day'); 

            while($cursor == $date)
                {
                    echo date_format($date,'Y-m-d') . "--- OK <br>";
                    date_modify($cursor, '+1 day'); 
                }
            while($cursor > $finish)
                {
                    die();
                }   
}*

输出:

2016-07-01 ---错过了 2016-07-02 ---错过了 2016-07-03 --- OK
2016-07-04 ---错过了 2016-07-05 ---错过了 2016-07-06 ---错过了 2016-07-07 ---错过了 2016-07-08 ---错过了 2016-07-09 ---错过了 2016-07-10 ---错过了 2016-07-11 ---错过了 2016-07-12 ---错过了 2016-07-13 ---错过了 2016-07-14 ---错过了 2016-07-15 ---错过了 2016-07-16 ---错过了 2016-07-17 ---错过了 2016-07-18 ---错过了 2016-07-19 ---错过了 2016-07-20 ---错过了 2016-07-21 ---错过了 2016-07-22 ---错过了 2016-07-23 ---错过了 2016-07-24 ---错过了 2016-07-25 ---错过了 2016-07-26 ---错过了 2016-07-27 ---错过了 2016-07-28 ---错过了 2016-07-29 ---错过了 2016-07-30 ---错过了 2016-07-31 ---错过了

1 个答案:

答案 0 :(得分:0)

您的问题很难理解,但据我了解,您正在尝试检查是否有重复日期的记录。

您错过的主要观点是,您只在$date变量上存储单个日期。澄清;

while ($row  = mysqli_fetch_array($result, MYSQL_ASSOC))
{
    $date =  date_create_from_format('Y-m-d', $row['date']);
}

/* at this point of code, your variable $date is exactly equal to 2016-07-03
* because you sorted all existing dates in descending order and last record is 2016-07-03
*/

在此代码部分之后,您的“确定”检查仅对“2016-07-03”有效。要更正代码,您应该有数组来存储所有日期并使用in_array()函数来检查存在。

另一种选择是在改变ORDER BY方向后在while循环中应用这些过程。如果两个连续记录不是连续几天,您将填写这些差距(二级)迭代。