日志|添加网站访问量统计和运行时间计时


技术206 阅0 评

网站访问量统计

使用插件PageViews-1.0.1
然后在 footer.php 插入以下内容。

<?php PageViews_Plugin::showPageViews();?>

运行时间展示

这个使用的是以下代码,在想要显示的地方插入即可

<span id="runtime_span"></span>
<script type="text/javascript">
function show_runtime()
{window.setTimeout("show_runtime()",1000);X=new 
Date("01/02/2020 00:00:00");//起始时间
Y=new Date();T=(Y.getTime()-X.getTime());M=24*60*60*1000;
a=T/M;A=Math.floor(a);b=(a-A)*24;B=Math.floor(b);c=(b-B)*60;C=Math.floor((b-B)*60);D=Math.floor((c-C)*60);
runtime_span.innerHTML="网站已运行: "+A+"天"+B+"小时"+C+"分"+D+"秒"}show_runtime();
</script>

显示效果

效果图

最后更新 2024-03-10
评论 ( 0 )
OωO
隐私评论