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

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

Which PHP function can return the current date/time?

30条回答
  •  余生分开走
    2020-11-22 08:52

    Set your time zone:

    date_default_timezone_set('Asia/Calcutta');
    

    Then call the date functions

    $date = date('Y-m-d H:i:s');
    

提交回复
热议问题