统计网站运行天数

在网上找了很久找到得这个代码,
可以吧这个代码放在信息栏,显示运行天数
在JS代码中 蓝色代码改成你想要的,
其第一个蓝色代码修改为你建站的时间。

<code><SCRIPT language=javascript><!--  
BirthDay=new Date("MAY, 01,2011");  
today=new Date();  
timeold=(today.getTime()-BirthDay.getTime());  
sectimeold=timeold/1000  
secondsold=Math.floor(sectimeold);  
msPerDay=24*60*60*1000  
e_daysold=timeold/msPerDay  
daysold=Math.floor(e_daysold);  
document.write("  本站已运行<font color=red>"+daysold+"</font>天 ");  
//-->  
</SCRIPT></code>

现在有一个更好的方法,就是用php实现时间统计
一下是php代码,可以放到主题中你想要的地方。

<code><?php echo floor((time()-strtotime("2011-10-13"))/86400); ?></code>

其中2011-10-13是你需要的时间,
比如你可以写成

<code>“我的网站运行了<?php echo floor((time()-strtotime("2011-10-13"))/86400); ?>天”</code>

看着很不错的。

3 thoughts on “统计网站运行天数
添加一条新回复 回到顶部

亲爱的,主人已经关闭了这篇文章的评论 。