Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该函数date("y-M-d H:m:s")返回 12-Jul-23 19:07:35。
date("y-M-d H:m:s")
但我需要它返回 2012-07-23 19:07:35。
如何写 07 而不是 Jul 和 2012 而不是 12(yyyy 不这样做)。
http://php.net/date
这应该工作:
date("Y-m-d H:m:s")
我相信这是日期('Ymd H:m:s')