作为一个 zii.widgets.CDetailView 来格式化我想要的日期,而不是数据库的形式?
更新
<?php $this->widget('zii.widgets.CDetailView', array(
'data'=>$model,
'attributes'=>array(
...
'create_time',
'update_time',
),
)); ?>
以以下形式显示日期
Create Time: 2012-10-03 22:49:01
Update Time: 2012-10-05 20:24:01
我要形成
Create Time: 22:49, 3 Oct 2012
Update Time: 20:24, 5 Oct 2012