如何在PHP中检查DB小时和分钟小于当前小时和分钟?

时间:2016-06-01 05:43:17

标签: php

我想检查DB Hours Minutes是否等于当前时间和小时,

例如,

在Db中,$ from_time = 12.00Am,$ current_time = 8.10在这种情况下,用户无法去购物,因为从时间是12.00Am。

$ from_time = 12.00Am,$ current_time = 12.10在这种情况下,用户可以去购物,因为从时间是12.00Am,用户可以在当前小时数大于等于我的数据库详细信息之后做任何事情。

$ to_time = 9.00pm $ current_time = 8.20在这种情况下,用户无法去购物。如何在php中检查这些?

1 个答案:

答案 0 :(得分:0)

$from_time = strtotime($from_time_from_DB);
$to_time = strtotime($to_time_from_DB);
$current_time = strtotime("now");

if(   $current_time >= $from_time 
   && $current_time < $to_time   ) 
{ 
    //user can go to shop
}
else
{
    //user can't go to shop
}