对不起,如果存在,我只是在任何地方都找不到。
我正在使用$timestamp =date('l jS \of F Y h:i:s A');
保存Sunday 16th of June 2019 09:59:40 PM
我将如何使其以24小时格式而不是AM / PM占用空间来输出DD/MM/YYYY 00:00
。
MM/DD/YYYY
中有一些,但我不知道如何修改。
任何指针,感谢您。
答案 0 :(得分:1)
您需要了解的所有信息都可以在手册中找到: https://www.php.net/manual/en/function.time.php
d // days in numbers 01-31
m // months in number 01 - 12
Y // years in 4 digits
H // hours in numbers 00.00 - 23.00
i // minutes in numbers
时间戳看起来像这样:
$timestamp =date('d/m/Y H:i');
答案 1 :(得分:1)
您需要的格式是:
date('d/m/Y H:i:s');
date函数接受一个字符串参数,您可以根据需要使用以下格式选项进行组合:https://www.php.net/manual/en/function.date.php
答案 2 :(得分:0)