Getting Hour and Minute in PHP

前端 未结 7 1292
既然无缘
既然无缘 2020-12-05 09:43

I need to get the current time, in Hour:Min format can any one help me in this.

7条回答
  •  伪装坚强ぢ
    2020-12-05 10:09

    Try this:

    $hourMin = date('H:i');
    

    This will be 24-hour time with an hour that is always two digits. For all options, see the PHP docs for date().

提交回复
热议问题