DEDECMS利用strftime()函数格式化时间的所有参数详解,包括年份日期进制、小时格式等,可以格式化任意位置如首页、列表页、详情页的时间,使用简单,可以格式的效果非常多:
dedecms首页时间标签:
样式为:09-29
[field:pubdate function='strftime("%m-%d",@me)'/]
样式为:2022-09-29
[field:pubdate function='strftime("%b %d, %Y",@me)'/]
dedecms列表页时间标签:
1、样式为2021-12-27 18:30:02?
[field:pubdate function="GetDateTimeMK(@me)"/]
2、样式为2021-12-27
[field:pubdate function="GetDateMK(@me)"/]
dedecms内容页时间标签:
1、样式为2021-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="";";
$b="
$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}
几天前更新:
[field:pubdate runphp='yes']
$today = Floor(time()/(3600 * 24));
$senday= Floor(@me/(3600 * 24));
$updays = $today-$senday;
if($updays==0) @me = "今日";
else @me = $updays."天前";
[/field:pubdate]
评论前必须登录!
注册