gpt4 book ai didi

php - 如何在PHP中检查时间是否在两次之间

转载 作者:IT老高 更新时间:2023-10-28 12:07:46 25 4
gpt4 key购买 nike

我有以下三个字符串(当前时间、日落和日出),如何找到当前时间是否在日出和日落之间?

$current_time = "10:59 pm";
$sunrise = "5:42 am";
$sunset = "6:26 pm";

最佳答案

$current_time = "4:59 pm";
$sunrise = "5:42 am";
$sunset = "6:26 pm";
$date1 = DateTime::createFromFormat('h:i a', $current_time);
$date2 = DateTime::createFromFormat('h:i a', $sunrise);
$date3 = DateTime::createFromFormat('h:i a', $sunset);
if ($date1 > $date2 && $date1 < $date3)
{
echo 'here';
}

See it in action

引用

关于php - 如何在PHP中检查时间是否在两次之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15911312/

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