|
1#
发表于 2006-7-14 13:41
| 只看该作者
[原创] 首页底部加入建站天数统计 for Discuz!4.1
作者:yeego
效果:只在首页底部显示“建站天数:XXX天”,其他页面不显示且该行自动隐藏
演示:http://www.jiacheng.sh.cn
步骤:
1.修改index.php文件,找到:- $newthreads = round(($timestamp - $lastvisit + 600) / 1000) * 1000;
复制代码 在下面加入:- $today = mktime (0,0,0,date("m") ,date("d"),date("Y"));
- $build_date = mktime (0,0,0,12,23,2004);//请修改后面的三个数字,分别代表你论坛运行第一天的月,日,年。注:如果是2005年1月1日,请输入mktime (0,0,0,1,1,2005),而非mktime (0,0,0,01,01,2005),否则统计不准确。
- $build_days = (int)(($today-$build_date)/(24*3600));
复制代码 2.修改模版中的footer.htm,找到:- <!--{if debuginfo()}-->
- <br>Processed in $debuginfo[time] second(s), $debuginfo[queries] queries<!--{if $gzipcompress}-->, Gzip enabled<!--{/if}-->
- <!--{/if}-->
复制代码 在下面加入:- <!--{if $build_days}--><br><font color=blue>建站天数</font>:<span class="bold"><font color=RED>$build_days</font></span><font color=blue>天</font><!--{/if}-->
复制代码 |
|