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.
我正在尝试转换一些日期“日期”(使用 current_timestamp() 创建),并显示 2013-02-13 17:38:08,我不希望出现秒数。但是当我使用时date('Y-m-d H:i', $date),我得到
date('Y-m-d H:i', $date)
1970-01-01 01:33
我想我没有使用正确的 php 方法,有人可以帮忙吗?
最好的,迈赫迪
date接受一个参数作为时间戳,所以strtotime先用来转换:
date
strtotime
date('Y-m-d H:i', strtotime($date))
可能更容易使用substr吗?
substr