PHP Date Time Current Time Add Minutes

前端 未结 12 2145
忘掉有多难
忘掉有多难 2020-12-01 07:21

Simple question but this is killing my time.

Any simple solution to add 30 minutes to current time in php with GMT+8?

12条回答
  •  南方客
    南方客 (楼主)
    2020-12-01 08:00

    echo $date = date('H:i:s', strtotime('13:00:00 + 30 minutes') );
    

    13:00:00 - any inputted time

    30 minutes - any interval you wish (20 hours, 10 minutes, 1 seconds etc...)

提交回复
热议问题