您现在的位置:首页 » 帮助文档 » P8技术手册 » 标签手册

凡客_timeformat时间格式化

功能:时间日期格式化输出

格式:

|凡客_timeformat(参数1,'参数2')

参数说明:

参数一:必填,日期显示方式,参数范围为1-13

1 显示小时分秒:13:21:01

2 显示年月日:2012-01-01

3 显示年月日小时分秒:2012-01-01 13:21:01

4 显示年月日小时分:2012-01-01 13:21

5 显示月日小时分:01-01 13:21

6 显示月日:01-01

7 显示单数年月日:2012-01

8 显示单数年月日小时分秒:2012-1-1 13:21:1

9 显示单数年月日小时分:2012-1-1 13:01

10 显示月:01

11:显示日:01

12:显示年:2012

13:自定义(Y年,m:月,d:日,H时,i分,s:秒)

参数二:可选,日期分割符,默认为“-”


    实例一:格式化输出内容发布时间。

    {%$read.addtime|凡客_timeformat(2,'/')%}

    {%$read.addtime|凡客_timeformat(3,'/')%}

    {%$read.addtime|凡客_timeformat(2)%}

    {%$read.addtime|凡客_timeformat(6,'/')%}


    输出结果:

    2010/05/06

    2010/05/06 12:23:22

    2010-05-06 05/06

     

    实例二:格式化输出内容发布时间。(列表输出)

    {%$read[i].addtime|凡客_timeformat(2,'/')%}

    {%$read[i].addtime|凡客_timeformat(3,'/')%}

    {%$read[i].addtime|凡客_timeformat(2)%}

    {%$read[i].addtime|凡客_timeformat(6,'/')%}


    实例三:自定义显示样式

    {%$read[i].addtime|凡客_timeformat(13,'','Y-m-d')%}

    输出结果:

    2010-04-21