标签: php date
我的日期格式为2011-01-28 06:34:33,即date("Y-m-d H:i:s")。我想将其转换为28th January 2011。
2011-01-28 06:34:33
date("Y-m-d H:i:s")
28th January 2011
如何更改?
答案 0 :(得分:2)
使用您的格式提供日期函数,可以找到here。将原始日期的时间戳作为第二个参数传递给日期。您可以使用strtotime获取时间戳。
date("dS F Y", strtotime("2011-01-28 06:34:33"));
答案 1 :(得分:0)
使用
$dateStr = date("jS F Y", time());
日期值没有前导零。
答案 2 :(得分:0)
尝试这个回音日期('jS F Y h:i:s A');