【问题标题】:Check availability of time with time slots in php使用 php 中的时隙检查时间的可用性
【发布时间】:2019-07-04 07:25:35
【问题描述】:

我想使用 PHP 和 mysql 每半小时显示一次商店的可用性状态,

为此,我尝试使用以下代码为我创建时隙

$duration="30";
    $start="10:00AM";
    $end="07:00PM";

    $start = new DateTime($start);
        $end = new DateTime($end);
        $start_time = $start->format('H:i');
        $end_time = $end->format('H:i');
        $i=0;
        while(strtotime($start_time) <= strtotime($end_time)){
            $start = $start_time;
            $end = date('H:i',strtotime('+'.$duration.' minutes',strtotime($start_time)));
            $start_time = date('H:i',strtotime('+'.$duration.' minutes',strtotime($start_time)));
            $i++;
            if(strtotime($start_time) <= strtotime($end_time)){
                $time[$i]['start'] = $start;
                $time[$i]['end'] = $end;
            }
        }
        print_R($time);

以上代码显示以下结果(正确创建时隙)

Array
(
    [1] => Array
        (
            [start] => 10:00
            [end] => 10:30
        )

    [2] => Array
        (
            [start] => 10:30
            [end] => 11:00
        )
    ...// and so on

我想要这样的结果

Array
(
    [1] => Array
        (
            [start] => 10:00
            [end] => 10:30
            [status] => availiable
        )

    [2] => Array
        (
            [start] => 10:30
            [end] => 11:00
            [status] => booked
        )

这是我在 phpmyadmin 中的“预订”表

id       shop_id     date        booking_start_time    booking_close_time
1        3           4-7-2019        10:00                 11:00

我该怎么做?提前致谢

【问题讨论】:

  • 预订表中是否有日期字段?预订是否取决于日期?
  • @RohitMittal:是的,预订取决于日期和时间
  • 但您的预订表没有日期字段?如何获取日期列?
  • @RohitMittal:请检查我现在更新我的问题

标签: php datetime timeslots


【解决方案1】:

您需要从数据库中比较时隙如下:

while(strtotime($start_time) <= strtotime($end_time)){
    $start = $start_time;
    $end = date('H:i',strtotime('+'.$duration.' minutes',strtotime($start_time)));
    $start_time = date('H:i',strtotime('+'.$duration.' minutes',strtotime($start_time)));
    $i++;
    if(strtotime($start_time) <= strtotime($end_time)){
        $time[$i]['start'] = $start;
        $time[$i]['end'] = $end;
    }
    //Here you need to write query and fetch data.
    $todayDate = date('d-m-Y'); //Please check date format. It should be similar as your database date field format.
    //please use data binding instead of contacting variable.
    $selectQuery = "select `id` from `booking` where date = "'.$todayDate.'" and 
        (( `booking_start_time` >= "'.$start.'" AND `booking_start_time` <= "'.$start.'" ) || 
        (`booking_close_time` >= "'.$end.'" AND `booking_close_time` <= "'.$end.'")) ";

    // After, you need to exeucte this query and need to check query output. if it has records, then you need to show booked else available. as below
    $result = mysqli_query($con, $selectQuery);
    if ($result->num_rows) {
        $time[$i]['status'] = 'booked';
    } else {
        $time[$i]['status'] = 'availiable';
    }
}
print_R($time);

希望对你有所帮助。

【讨论】:

  • 请帮到你,干杯!!
【解决方案2】:

这是您查询的最佳解决方案。

select count(*) as aggregate from `bookings` where (`booking_date` = '$booking_date') and (( start_time >= '$start_time' AND end_time <= '$end_time' ) || (end_time >= '$start_time' AND start_time <= '$end_time'))

【讨论】:

    猜你喜欢
    • 2012-08-11
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2023-04-10
    • 2012-06-03
    相关资源
    最近更新 更多