【发布时间】:2012-01-03 20:33:01
【问题描述】:
我正在使用 codeigniter 时间助手来回显我的 mysql 数据库的 TIMESTAMP (CURRENT_TIMESTAMP) 行。
我数据库中原始格式的时间戳是:2011-11-15 14:40:45
当我使用助手在我的视图中回显时间时,我得到以下信息:15/11/2011 02:40
我现在的时间似乎在上午。为什么???
这是我用来回显时间的代码:
$the_date = mdate('%d/%m/%Y %h:%i', strtotime($row->date))
echo $the_date
【问题讨论】:
标签: codeigniter time controller timestamp helper