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

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

Which PHP function can return the current date/time?

30条回答
  •  逝去的感伤
    2020-11-22 09:03

    date_default_timezone_set('Europe/Warsaw');
    echo("

    ".date('H:i:s')."

    "); echo("

    ".date('d/m/Y')."

    ");

提交回复
热议问题