PHP Date Time Current Time Add Minutes

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

    Time 30 minutes later

    $newTime = date("Y-m-d H:i:s",strtotime(date("Y-m-d H:i:s")." +30 minutes"))
    

提交回复
热议问题