如何调用随机数
热点源码标签:
- {dede:tag row=120 sort=month}
- [field:tag/]
- {/dede:tag}
关键一点就是:
- class="tag[field:highlight /]"
再看它的css代码:
- #hotTag a.tag1 { color:#000000;font-weight:bold;}
- #hotTag a.tag2 { color:#e65730;text-decoration:underline;}
- #hotTag a.tag3 { color:#00b9da;font-weight:bold;}
- #hotTag a.tag4 { color:#FE3981;font-weight:bold;font-size:14px;}
- #hotTag a.tag5 { color:#669900;font-size:16px;}
- #hotTag a.tag6 { color:#660099;font-weight:bold;font-size:16px;}
只有数字随机,才会出现图示效果,因为他们的样式不一样的。
修改程序:
打开 include/tag.lib.php 文件,找到:
第一个:
- $row['highlight'] =0
修改为
- $row['highlight'] = mt_rand(1,6);
并把完整的IF语句注释掉,就是不要了。
- //if($row['monthcc']>1000 || $row['weekcc']>300 )
- // {
- // $row['highlight'] = mt_rand(3,4);
- // }
- // else if($row['count']>3000)
- // {
- // $row['highlight'] = mt_rand(5,6);
- // }
- // else
- //
- // $row['highlight'] = mt_rand(1,2);
- // }
当然可以调从多少到多少在$row['highlight'] = mt_rand(1,6); (开始,结束)