PHP Date Time Current Time Add Minutes

前端 未结 12 2151
忘掉有多难
忘掉有多难 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 07:50

    It looks like you are after the DateTime function add - use it like this:

    $date = new DateTime();
    date_add($date, new DateInterval("PT30M"));
    

    (Note: untested, but according to the docs, it should work)

提交回复
热议问题