gpt4 book ai didi

php - 检查输入时间是否存在于两个时间范围之间

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

我想如何检查给定时间是否在两个时间范围内。例如: 22:00 < 22:30 ,这里条件变为 false。提前致谢。

$time1="11:00"; 
$time2="22:30";
$currenttime=date("22:00");

if($time1 - $currenttime < 0 && $currenttime - $time2 < 0 ) {
echo "Lies in range";
} else {
echo "Not lies in range";
}

最佳答案

以下代码应该有效:

$time1 = strtotime("11:00");
$time2 = strtotime("22:30");
$currenttime = strtotime("22:00");
if ($time1 - $currenttime < 0 && $currenttime - $time2 < 0)
{
echo "Lies in range";
}
else
{
echo "Not lies in range";
}

关于php - 检查输入时间是否存在于两个时间范围之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35376374/

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