-1

我需要从当前日期时间 + 某个时间开始检索过期日期时间。

例子是:

$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!!

我想从这个脚本开始写一个帮助库。

4

2 回答 2

2

用这个

$expire_datetime = date('Y-m-d H:m:s',strtotime("NEXT DAY"));

或者

 $expire_datetime = date('Y-m-d H:m:s',strtotime("tomorrow"));
于 2012-10-28T12:55:51.650 回答
1
$date = date('Y-m-d H:m:s');
$newdate = strtotime ( '+1 day' , strtotime ( $date ) ) ;
$newdate = date('y-m-d',$newdate)
echo $newdate;
于 2012-10-28T12:56:08.260 回答