如何从可变时间倒计时 7 小时(我将从插入时间戳的表格中获取时间),在可变时间 7 小时后我将更新表格。
我需要这样的东西
$time = 2013-05-18 02:00:00 // comes from database
$target = $time + 7hours // time from database +7hours will be 2013-05-18 09:00:00
$until = $target - $time
我需要类似下面的代码
if ($until > 0 ) {
echo "you need to wait for $until hours"
} else {
echo "time is ok"; // i will update a table
}