我想找到的邏輯,如果當前時間與此時間範圍內躺在那麼我的店是開放的,否則它是關閉 我是能夠弄清楚的解決方案,但邏輯是不正確的,當我考慮分鐘 唯一小時邏輯是如何檢查當前時間是在開店和關閉時間之間的店鋪
$time= "11:00 22:30"; //time interval
$var=explode(" ",$time);
$currenttime=date("22:00"); // currenttime
$opentime =$var[0];
$closetime=$var[1];
if($opentime - $currenttime < 0 && $currenttime - $closetime < 0)
{
echo "open";
}
else
{
echo "close";
}
此代碼的工作很好,當我把當前時間作爲10,24,9,但是當我考慮爲22.30或11.30沒有給出正確的結果,請爲此建議我正確的解決方案..在此先感謝
你覺得'日期( 「22:0」)'是好? – deceze
我們需要檢查的當前時間 – techandroid07
是的,但是......日期(「22:00」)返回......「22:00」......這是......沒有意義的。 – deceze