织梦dedecms时间调用标签大全

2016年5月27日 建站技术 浏览 3,440 抢沙发 A+

织梦时间调用标签大全

织梦时间调用的标签大全,如果大家感觉有用的话,就收藏吧!

织梦首页时间标签

1. 11-20 样式

[field:pubdate function='strftime("%m-%d",@me)'/]

2. May 15, 2009 样式

[field:pubdate function='strftime("%b %d, %Y",@me)'/]

织梦列表页时间标签

1. 2009-12-27 18:30:02 样式

[field:pubdate function="GetDateTimeMK(@me)"/]

2. 2009-12-27 样式

[field:pubdate function="GetDateMK(@me)"/]

织梦内容页时间标签

1、2009-12-27 样式

{dede:field name='pubdate' function='GetDateMk(@me)'/}

2、May 15, 2009 样式

{dede:field name='pubdate' function='strftime("%b %d, %Y",@me)'/}

24小时内的时间显示红色

[field:pubdate runphp='yes']
$a="<font color='#ff0000'>";
$b="</font>"; $c=strftime("%Y年%m月%d日 %H:%M:%S","@me");
$ntime = time();
$oneday = 3600 * 24; if(($ntime - @me)<$oneday) @me = $a.$c.$b;
else @me =$c;
[/field:pubdate]

最后更新时间

{dede:tagname runphp='yes'}@me = date("Y-m-d H:i:s", time());{/dede:tagname}

XX天前

[field:pubdate runphp='yes']
$today = Floor(time()/(3600 * 24));
$senday= Floor(@me/(3600 * 24));

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: