How do I get the current date and time in PHP?

后端 未结 30 1606
孤城傲影
孤城傲影 2020-11-22 08:19

Which PHP function can return the current date/time?

30条回答
  •  感情败类
    2020-11-22 09:04

    If you are Bangladeshi, and if you want to get the time of Dhaka then use this:

    $date = new DateTime();
    $date->setTimeZone(new DateTimeZone("Asia/Dhaka"));
    $get_datetime = $date->format('d.m.Y H:i:s');
    

提交回复
热议问题