Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将当前日期(也称为禁令日期)以及禁令时长(可以是 24 小时到 50000 小时等)一起存储在表格中。
我需要将禁令的长度添加到禁令的日期以给出到期日期,但我正在努力解决如何做到这一点。我已经尝试了各种使用日期格式并添加小时数的方法,但似乎无法理解这一点。
谢谢。
如果您的禁令开始日期存储在一个变量中$startDate,并且您在一个$hoursBan仅数值的变量中获取禁令小时数,那么您将通过以下方式获得到期日期:
$startDate
$hoursBan
$expiryDate = strtotime( date("Y-m-d", strtotime($startDate)) . " +" . $hoursBan . " hours");