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.
例如:x 用户在星期一预订机票,并且机票状态更改为预订。三天后,门票状态将自动更改为免费(空)。我怎样才能做到这一点?
尝试这样的事情(使用strtotime):
if ($ticket_timestamp < strtotime("-3 days")) { // ticket is expired }
您通常需要按日期检查。如果您不关心实际日期而只需要比较,则可以使用 time() 函数。这一天是 time()/60/60/24 。
您可以将订单的时间戳存储在数据库中,然后将其与当前时间进行比较。