欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

利用dedecms给近三天(或当天)发布的文章显示红色日期或加上new字或new小图片_PHP教程

程序员文章站 2022-05-29 23:06:22
...
1)红色日期


[field:pubdate runphp='yes']
$a="<font color=red>".strftime('%m-%d',@me)."</font>";


$b=strftime('%m-%d',@me);
$ntime = time();
$day3 = 3600 * 24 * 3;


if(($ntime - @me) < $day3) @me = $a;
else @me =$b;
[/field:pubdate]

2)红色的new


[field:pubdate runphp='yes']
$aa=strftime('%m-%d',@me);

$ntime = time();
$tagtime = @me;
$day3 = 3600 * 24 * 3;

if($tagtime > $ntime-$day3) @me = "<font color='red'>(new)</font>";

else @me = $aa;
[/field:pubdate]


3)加new.jif小图片


[field:pubdate runphp='yes']
$aa=strftime('%m-%d',@me);

$ntime = time();
$tagtime = @me;
$day3 = 3600 * 24 * 3;
if($tagtime > $ntime-$day3) @me = "<img src='new.gif' />".$aa;

else @me = $aa;
[/field:pubdate]


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477231.htmlTechArticle1)红色日期 br[field:pubdate runphp=yes] br$a=lt;font color=redgt;.strftime(%m-%d,@me).lt;/fontgt;; br$b=strftime(%m-%d,@me); br$ntime = time(); br$day3 = 3600 * 24 * 3; brif(($...