gpt4 book ai didi

php mysql 比较日期并与用户输入日期匹配

转载 作者:行者123 更新时间:2023-11-29 13:53:02 25 4
gpt4 key购买 nike

我正在做一个房屋租赁预订页面。

我有一个日期选择器,我的用户提交了 UNIX 日期时间:到达和出发日期。
在 mySQL 上,我有一个具有不同季节的房子,其中包含“season_start”日期(YYYY-mm-dd)、“season_end”日期和“每日价格”。

$seasons_select="SELECT id,season_start,season_end,daily_price FROM ".T_ITEM_SEASONS." WHERE id_item=".ID_ITEM." ORDER BY season_start ";
$res_seasons=mysql_query($seasons_select) or die("Error getting states");
$arrival_date = date('d-m-Y', $arrival_date);
$departure_date = date('d-m-Y', $departure_date);
while ($seasons_row=mysql_fetch_assoc($res_seasons)){
$start_date = date('d-m-Y', strtotime($seasons_row["season_start"]));
$end_date = date('d-m-Y', strtotime($seasons_row["season_end"]));
$current_date = $start_date;
while($current_date != $end_date){
$current_date = date("d-m-Y", strtotime("+1 day", strtotime($current_date)));
$match_date = $arrival_date;
while($match_date != $departure_date){
$match_date = date("d-m-Y", strtotime("+1 day", strtotime($match_date)));
if ($current_date==$match_date){
echo $current_date.' This is one of the days! <br />';
}
}
}
}

如果用户到达/离开期间的日期在一个或多个季节内,最好的匹配方式是什么?

我的代码可以工作......
我得到了我想要的答案,但在它之后出现“ fatal error :超过了最大执行时间 30 秒”

最佳答案

What is the best way to match if a date inside the user arrival/departure period days inside one or severall seasons?

好吧,你的看起来有点糟糕:-)

我想说,让 MySQL 来完成这项工作 – 只选择您想要的记录。

要检查单个日期是否在“季节”内,您必须检查它是否大于等于季节开始且小于等于季节结束。

要获取到达/出发期间的任何一天所属的所有季节,您必须检查四种情况:

(| 是季节开始和结束,A 是选择到达日期,D 是出发日期。)

S: -------------------|-----------------|------------------
1. ---------------A--------------------------D-------------
2. ---------------A-----------------D----------------------
3. -----------------------A---------D----------------------
4. -----------------------A------------------D-------------
  1. 季节完全落入所选时段。

  2. 在赛季开始前抵达,在赛季结束前离开。

  3. 抵达时间在赛季开始后,出发时间在赛季结束前。

  4. 在赛季开始后抵达,在赛季结束后离开。

(之前和之后总是意味着包括,所以实际上是之前/之上和之上/之后。)

<小时/>

放入查询中,可能如下所示,其中 2013-05-04 作为到达日期,2013-07-04 作为出发日期:

SELECT id, season_start, season_end, daily_price FROM table
WHERE id_item = 1234 AND (
('2013-05-04' <= season_start AND '2013-07-04' >= season_end) OR
('2013-05-04' <= season_start AND '2013-07-04' <= season_end) OR
('2013-05-04' >= season_start AND '2013-07-04' <= season_end) OR
('2013-05-04' >= season_start AND '2013-07-04' >= season_end)
)
ORDER BY season_start

既然您说您收到的是 Unix 时间戳形式的用户输入,您可以在将其插入查询之前使用 PHP 的 date() 对其进行格式化,也可以使用 MySQL 的 FROM_UNIXTIME(123456789 ,'%Y-%M-%D') 在这些地方。

并且您应该在 season_startseason_end 列(各一个索引)上创建索引(如果尚未到位),以获得更好的性能。

<小时/>

编辑:正如 this answer Salman 在评论中提到的那样,两个条件(以及我在应用 bool 逻辑方面的更多创造力)足以检查,因此 WHERE 子句可以简化为

WHERE id_item = 1234 AND
('2013-05-04' <= season_end) and ('2013-07-04' >= season_start)

关于php mysql 比较日期并与用户输入日期匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16377661/

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