我正在研究SE4中的事件模块,并希望以某种特定格式显示时间/日期。这是我现在使用的代码,用于显示事件开始时间:
echo $this->locale()->toTime($event->starttime);
并且此代码显示输出11.00
,这是可以的,但我的问题是:如何格式化此输出?
假设我需要输出11:00
,有没有办法以这种方式格式化?
答案 0 :(得分:0)
试试这个
$this->locale()->toTime($event->starttime,array('format'=>'h:m'))