使用Ci日期助手,我如何将'06 / 08/2012 17:10 pm'变成12小时格式?
date('m/d/Y H:ia ', strtotime($row->entryCreationDateTime))
答案 0 :(得分:2)
该代码与CodeIgniter无关,它只是PHP函数。有关日期功能的信息,请参阅manual page。
格式chatacter H
将小时设置为12小时格式,h
将小时设置为24小时格式。
将代码更改为:
date('m/d/Y h:ia ', strtotime($row->entryCreationDateTime))