dedecms模板中24小时内更新的文章时间显示为红色代码示例 [field:pubdate runphp='yes'] $a="<font color=red>".strftime('%m-%d',@me)."</font>";
$b=strftime('%m-%d',@me);
$ntime = time();
$day3 = 3600 * 24;
if(($ntime - @me) < $day3) @me = $a;
else @me =$b;
[/field:pubdate]
24小时内更新的文章时间显示为红色 |