我需要从当前日期时间 + 某个时间开始检索过期日期时间。
例子是:
$current_datetime = date('Y-m-d H:m:s');
$expire_time = 24;// 1 day in hours as int() for example ;)
$expire_datetime = date($current_datetime + $expire_time); //don't know how to do this in Y-m-d H:m:s format!!
我想从这个脚本开始写一个帮助库。