0

cakephp 上的时间助手确实只给出了经络的年、小时和分钟,但我如何获得要添加的秒字段。

4

2 回答 2

3

您可以使用TimeHelper Format() 方法

<?php echo $this->Time->format('F jS, Y h:i:s A', '2011-08-22 11:53:12');?>
//output: August 22nd, 2011 11:53:12 AM

s将用于显示该seconds部分的时间。

于 2013-07-04T06:27:08.203 回答
0

您可以作为参数传递以显示第二个像 AM 或 pm

echo $this->Time->format('F jS, Y h:i A', $post['Post']['created'], null, $user['User']['time_zone']);
// Will display August 22nd, 2011 11:53 PM for a user in GMT+0
// August 22nd, 2011 03:53 PM for a user in GMT-8
// and August 23rd, 2011 09:53 AM GMT+10

你也可以参考Cake Document for Time Helper

于 2013-07-04T09:24:17.957 回答