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.
我正在尝试这段代码:
日期('d F Y','2013-09-14 00:00:00')
我期待着回来
2013 年 9 月 14 日
相反,我得到
1969 年 12 月 31 日
这有任何意义吗?
您需要将目标日期包装在 strtotime() 函数中:
date('d F Y', strtotime('2013-09-14 00:00:00'));