我想获取实际日期+时间,并将其(时间(转换为24小时格式(例如:15/04/2017 13:32:02
我当前的代码是:
date_default_timezone_set("Asia/Magadan");
$date = date("d/m/Y h:i:s");
echo $date;
该显示:
15/04/2017 01:32:02
谢谢。
将 h 大写字母作为 24 小时格式日期("d/m/Y H:i:s"(;
最后,要更改为 24 小时格式,我们只需要将小时的 H 更改为 MAJ/CAPS。
$date = date("d/m/Y H:i:s");
http://php.net/manual/en/function.date.php
将 (h:i:s( 转换为 (H:i:s( . 这对我有用