当前位置: 首页 > 站长资讯 > 正文页面

DEDECMS显示英文日期时间的方法

本文实例讲述了DEDECMS显示英文日期时间的方法。分享给大家供大家参考。具体分析如下:fXu网站目录_网站网址收录与提交入口

下面就说一下在dedecms如果把日期变成英文的.fXu网站目录_网站网址收录与提交入口

时间格式:Saturday November-24 2007 07:49:45fXu网站目录_网站网址收录与提交入口

要显示成这样的日期格式fXu网站目录_网站网址收录与提交入口

1. 在列表页里,fXu网站目录_网站网址收录与提交入口

[field:pubdate function=strftime('%A&nbsp%B-%d&nbsp%Y %H:%M:%S',@me)/]fXu网站目录_网站网址收录与提交入口

2. 在内容页里,fXu网站目录_网站网址收录与提交入口

{dede:field name='pubdate' runphp='yes'}fXu网站目录_网站网址收录与提交入口

@me=strftime('%A&nbsp%B-%d&nbsp%Y&nbsp&nbsp%H:%M:%S',@me);fXu网站目录_网站网址收录与提交入口

{/dede:field}fXu网站目录_网站网址收录与提交入口

dedecms日期时间标签fXu网站目录_网站网址收录与提交入口

下面的内容将向大家详细的说明时间标签的使用情况,fXu网站目录_网站网址收录与提交入口

[field:pubdate function='strftime("%Y-%m-%d %H:%M:%S",@me)'/]fXu网站目录_网站网址收录与提交入口

2008-11-01 11:11:52fXu网站目录_网站网址收录与提交入口

[field:pubdate function='strftime("%y-%m-%d %H:%M:%S",@me)'/]fXu网站目录_网站网址收录与提交入口

08-11-01 11:11:52fXu网站目录_网站网址收录与提交入口

[field:pubdate function='strftime("%m-%d %H:%M:%S",@me)'/]fXu网站目录_网站网址收录与提交入口

11-01 11:14:20fXu网站目录_网站网址收录与提交入口

[field:pubdate function='strftime("%m-%d %H:%M",@me)'/]fXu网站目录_网站网址收录与提交入口

11-01 11:14fXu网站目录_网站网址收录与提交入口

[field:pubdate function='strftime("%y-%m-%d",@me)'/]fXu网站目录_网站网址收录与提交入口

08-11-01fXu网站目录_网站网址收录与提交入口

[field:pubdate function='strftime("%y年%m月%d日",@me)'/]fXu网站目录_网站网址收录与提交入口

08年11月01日fXu网站目录_网站网址收录与提交入口

[field:pubdate function='strftime("%Y年%m月%d日 %H点%M分%S秒",@me)'/]fXu网站目录_网站网址收录与提交入口

2008年11月01日 11点17分36秒fXu网站目录_网站网址收录与提交入口

[field:pubdate function='strftime("%b %d, %Y",@me)'/]fXu网站目录_网站网址收录与提交入口

Nov 01, 2008fXu网站目录_网站网址收录与提交入口

[field:pubdate function='strftime("%A on %b %d, %Y, %X : %Z",@me)'/]fXu网站目录_网站网址收录与提交入口

Saturday on Nov 01, 2008, 11:21:06 : 中国标准时间fXu网站目录_网站网址收录与提交入口

3. 参数分析如下:fXu网站目录_网站网址收录与提交入口

%a 星期几的缩写。fXu网站目录_网站网址收录与提交入口

%A 星期几的全名。fXu网站目录_网站网址收录与提交入口

%b 月份名称的缩写。fXu网站目录_网站网址收录与提交入口

%B 月份名称的全名。fXu网站目录_网站网址收录与提交入口

%c 本地端日期时间较佳表示字符串。fXu网站目录_网站网址收录与提交入口

%d 用数字表示本月的第几天 (范围为 00 至 31)。fXu网站目录_网站网址收录与提交入口

%H 用24小时制数字表示小时数 (范围为 00 至 23)。fXu网站目录_网站网址收录与提交入口

%I 用12小时制数字表示小时数 (范围为 01 至 12)。fXu网站目录_网站网址收录与提交入口

%j 以数字表示当年度的第几天 (范围为001至 366)。fXu网站目录_网站网址收录与提交入口

%m 月份的数字 (范围由 1 至 12)。fXu网站目录_网站网址收录与提交入口

%M 分钟。fXu网站目录_网站网址收录与提交入口

%p 以 'AM' 或 'PM' 表示本地端时间。fXu网站目录_网站网址收录与提交入口

%S 秒数。fXu网站目录_网站网址收录与提交入口

%U 数字表示为本年度的第几周,第一个星期由第一个周日开始。fXu网站目录_网站网址收录与提交入口

%W 数字表示为本年度的第几周,第一个星期由第一个周一开始。fXu网站目录_网站网址收录与提交入口

%w 用数字表示本周的第几天 ( 0 为周日)。fXu网站目录_网站网址收录与提交入口

%x 不含时间的日期表示法。fXu网站目录_网站网址收录与提交入口

%X 不含日期的时间表示法。fXu网站目录_网站网址收录与提交入口

%y 二位数字表示年份 (范围由 00 至 99)。fXu网站目录_网站网址收录与提交入口

%Y 完整的年份数字表示,即四位数。fXu网站目录_网站网址收录与提交入口

%Z 时区或名称缩写。fXu网站目录_网站网址收录与提交入口

%% % 字符。fXu网站目录_网站网址收录与提交入口

希望本文所述对大家的dedecms建站有所帮助。fXu网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章