PHP Date Time Current Time Add Minutes

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

    time after 30 min, this easiest solution in php

    date('Y-m-d H:i:s', strtotime("+30 minutes"));
    

    for DateTime class (PHP 5 >= 5.2.0, PHP 7)

    $dateobj = new DateTime();
    $dateobj ->modify("+30 minutes"); 
    

提交回复
热议问题