PHP Date Time Current Time Add Minutes

前端 未结 12 2150
忘掉有多难
忘掉有多难 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:45

    The question is a little old, but I come back to it often ;p

    Another way, which is also a one liner:

    modify("+30 minutes")->format('Y-m-d h:i:s') ?>
    

    Or from timestamp, returns Y-m-d h:i:s:

    modify("+30 minutes")->format('Y-m-d h:i:s') ?>
    

    Or from timestamp, returns timestamp:

    modify("+30 minutes")->format('U') ?>
    

提交回复
热议问题