用 PHP 减去 1 天

2022-08-30 07:27:40

我正在尝试从我的Drupal CMS中取出一个日期对象,减去一天并打印出两个日期。这是我所拥有的

$date_raw = $messagenode->field_message_date[0]['value'];

print($date_raw);

//this gives me the following string: 2011-04-24T00:00:00

$date_object = date_create($date_raw);

$next_date_object = date_modify($date_object,'-1 day');

print('First Date ' . date_format($date_object,'Y-m-d'));

//this gives me the correctly formatted string '2011-04-24'

print('Next Date ' . date_format($next_date_object,'Y-m-d'));

//this gives me nothing. The output here is always blank

所以我不明白为什么原始的日期对象出来很好,但是然后我试图创建一个额外的日期对象,并通过减去一天来修改它,似乎我不能这样做。输出始终为空白。


答案 1

您可以尝试:

print('Next Date ' . date('Y-m-d', strtotime('-1 day', strtotime($date_raw))));

答案 2
 date('Y-m-d',(strtotime ( '-1 day' , strtotime ( $date) ) ));

推荐