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

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

Which PHP function can return the current date/time?

30条回答
  •  渐次进展
    2020-11-22 08:49

    echo date("d-m-Y H:i:sa");
    

    This code will get the date and time of the server that the code runs on.

提交回复
热议问题