本文介绍了PHP日期转换的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
日期格式 2011-01-28 06:34:33
ie date(Ymd H:i:s)
。我想将其转换成 2011年1月28日
。 如何更改?
解决方案
使用格式提供date函数,可以找到。将原始日期的时间戳作为第二个参数传递给日期。您可以使用获取时间戳。
date(dS FY,strtotime(2011-01-28 06:34:33));
I have date in format 2011-01-28 06:34:33
i.e. date("Y-m-d H:i:s")
. I want to convert it into 28th January 2011
.
How can I change it?
解决方案
Supply the date function with your format, which can be found here. Pass the timestamp of your original date as the second parameter to date. You can obtain the timestamp by using strtotime.
date("dS F Y", strtotime("2011-01-28 06:34:33"));
这篇关于PHP日期转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!