如何检查一个UNIX时间戳范围是否与PHP中的另一个UNIX时间戳范围重叠?
我正在开发一个需要将来预订的应用程序。但是,每个时期只允许一(1)次预订。
示例:
先生。 X可预订资源,从 10:00 A.M。到 12:00 P.M。(中午)。之后,Y女士希望将相同资源从 8:00 A.M。保留到 11:00 P.M。。我的应用程序应该拒绝 Y女士的尝试预订,因为它重叠 X先生的之前预订。
我在UNIX时间戳(整数)中存储现有预留的开始和结束时间,但如果需要,我可以将它们转换为以下格式“yyyy-mm-dd hh:mm:ss”,反之亦然。 / p>
我不明白如何解决这个问题。如果我以所有现有的预留开始时间检查新的开始时间,并以类似的方式检查新的结束时间,则逻辑将包含许多if
语句并使应用程序变慢。
请您帮助我以高效方式解决此问题,而无需使用大量服务器资源。
非常感谢您的帮助。
由于
答案 0 :(得分:1)
换句话说,您需要对特定资源的所有预留间隔(UNIX时间戳)进行比较,以确定新预留是否有效(在域新预订)。
首先,类似于此的SQL查询可能有所帮助。虽然ANY
,ALL
,NOT
,EXISTS
等关键词似乎很诱人,但您可以自行决定在需要的时候需要多少信息。调度冲突(基于您的UI)。此查询提供了使用预测预测提取有关潜在预订的最大信息量(在PHP等中...)的机会。
// A query like this might help. It's not perfect, but you get the idea.
// This query looks for ALL potential conflicts, starting and ending.
$sql = "SELECT DISTINCT `t1`.`startTime`, `t1`.`endTime`
FROM `reservations` AS `t1`
INNER JOIN `resources` AS `t2`
ON `t1`.`resourceId` = `t2`.`resourceId`
WHERE `t2`.`resourceId` = :resourceId
AND (`t1`.`startTime` BETWEEN :minTime1 AND :maxTime1)
OR (`t1`.`endTime` BETWEEN :minTime2 AND :maxTime2)
ORDER BY `t1`.`startTime` ASC";
潜在。这将为您留下多维数组。以下逻辑允许您获取 报告 详细说明为什么无法进行预订。您可以在另一个模块中解释报告。
概括 解决方案作为Reservation
类的方法。根据您的RDBMS,您可以在SQL中执行类似的操作。虽然,它可能 远不那么具体 ,您可能希望稍后 粒度 。您可以将JSON格式的报告发送到JavaScript前端(只需要考虑一下)。
private function inOpenDomain(array $exclusion, $testStart, $testEnd)
{
$result = null;
$code = null;
$start = $exclusion[0];
$end = $exclusion[1];
if (($testStart > $end) || ($testEnd < $start)) {
$result = true;
$code = 0; //Good! No conflict.
} elseif ($testStart === $start) {
$result = false;
$code = 1;
} elseif ($testStart === $end) {
$result = false;
$code = 2;
} elseif ($testEnd === $start) {
$result = false;
$code = 3;
} elseif ($testEnd === $end) {
$result = false;
$code = 4;
} elseif (($testStart > $start) && ($testEnd < $end)) { //Middle
$result = false;
$code = 5;
} elseif (($testStart < $start) && ($testEnd > $start)) { //Left limit
$result = false;
$code = 6;
} elseif (($testStart < $end) && ($testEnd > $end)) { //Right limit
$result = false;
$code = 7;
} elseif (($testStart < $start) && ($testEnd > $end)) { //Both limits
$result = false;
$code = 8;
} else {
$result = false;
$code = 9;
}
return ['start' => $start, 'end' => $end, 'result' => $result => 'code' => $code];
}
制定管理先前预订时间检查的方法(假设为PDO::FETCH_ASSOC
)。
private function checkPeriods(array $periods, $newStartTime, $newEndTime)
{
$report = [];
if (!isset($periods[0])) { //If NOT multi-dimensional
$report = inOpenDomain($periods, $newStartTime, $newEndTime)
} else {
for ($i = 0, $length = $count($periods); $i < $length; ++$i) {
$report[$i] = inOpenDomain($periods[$i], $newStartTime, $newEndTime);
}
}
return $report;
}
使用SELECT
预设语句,在reservations
表上创建一个PDO的方法。一般来说......
private function getReservationTimes($resourceId, $minTime, $maxTime)
{
$sql = "SELECT DISTINCT `t1`.`startTime`, `t1`.`endTime`
FROM `reservations` AS `t1`
INNER JOIN `resources` AS `t2`
ON `t1`.`resourceId` = `t2`.`resourceId`
WHERE `t2`.`resourceId` = :resourceId
AND (`t1`.`startTime` BETWEEN :minTime1 AND :maxTime1)
OR (`t1`.`endTime` BETWEEN :minTime2 AND :maxTime2)
ORDER BY `t1`.`startTime` ASC";
$stmt = $this->db->prepare($sql);
$stmt->bindParam(:resourceId , $resourceId);
$stmt->bindParam(:minTime1 , $minTime);
$stmt->bindParam(:maxTime1 , $maxTime);
$stmt->bindParam(:minTime2 , $minTime);
$stmt->bindParam(:maxTime2 , $maxTime);
$stmt->execute();
return $stmt->fetchAll();
}
为整个过程创建一个公共方法(接口)。
public function isOpen($minTime, $maxTime)
{
$periods = $this->getReservationTimes($this->resource->getResourceId(), $minTime, $maxTime);
if (empty($periods)) {
return true; //You may reserve the resource during the time period.
}
return $this->checkPeriods($periods, $this->start, $this->end));
}
分开关注点。
为要保留的实际项目创建类层次结构。
abstact class Product
{
}
class Resource extends Product implements Reservable //Or, something ...
{
private $resourceId;
//etc ....
}
为预订创建类层次结构。
abstract class Interval
{
private $start;
private $end;
public function __construct($start, $end)
{
$this->start = $start;
$this->end = $end;
}
}
class Reservation extends Interval
{
private $db;
private $resource;
public function __construct(PDO $pdo, Reservable $resource, $reqStartTime, $reqEndTime)
{
parent::__construct($reqStartTime, $reqEndTime);
$this->db = $pdo;
$this->resource = $resource;
}
}
在try / catch
中运行实例化Reservation
对象时,至少提供一个Reservable
对象,请求的开始时间和请求的结束时间(在本例中为UNIX时间戳)。
try
{
$day = 84600; // Seconds per day.
$future = $day * 90; // Application specific.
//User requested times.
$reqStartTime = 1488394687 + $day; // Tomorrow.
$reqEndTime = 1488394687 + ($day * 2); // Two day duration.
//Search constraints.
$minTime = time(); // Today. Right now.
$maxTime = 1488394687 + $future; // 90 day look ahead.
$reservation = new Reservation($pdo, $resourceObj, $reqStartTime, $reqEndTime);
$availability = $reservation->isOpen($minTime, $maxTime);
if($availability === true){
$reservation->confirm();
} else {
//Have some other object deal with the report
$reporter = new Reporter($availability);
$reporter->analyzeReport();
//Have some other object update the view, etc ...
}
}
catch(Exception $e)
{
//Handle it.
}