Subtract 1 day with PHP

后端 未结 10 778
我在风中等你
我在风中等你 2020-11-28 06:52

I\'m trying to take a date object that\'s coming out of my Drupal CMS, subtract one day and print out both dates. Here\'s what I have

$date_raw = $messageno         


        
10条回答
  •  清歌不尽
    2020-11-28 07:23

    You can try:

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

提交回复
热议问题