开启辅助访问     
收藏本站

站内搜索

搜索

Minecraft(我的世界)苦力怕论坛

[其他] 分享一个基于php+js的网页计数器吧

 发表于 2024-12-2 21:15:41|显示全部楼层|阅读模式 IP:广西
本帖最后由 小永高呐 于 2024-12-2 21:22 编辑

之前用的 busuanzi 的计数器,不过总是担心哪天突然挂了,索性考虑自建一个

在需要计数的网页引入如下js代码

<script>
fetch('/fwltj.php')
.then(response => response.json())
.then(data => {
document.getElementById('fwltj').innerText = data.visitCount;
})
.catch(error => console.error('0:', error));
</script>




在页面显示的地方使用如下代码来调用显示

<span id="fwltj"></span>


在主机新建一个叫 fwltj.php 的文件,粘贴如下代码

<?php
$visitCountFile = 'fwl.txt';
function getVisitCount() {
    global $visitCountFile;
    if (file_exists($visitCountFile)) {
        return file_get_contents($visitCountFile);
    }
    return 0;
}
function increaseVisitCount() {
    global $visitCountFile;
    $visitCount = getVisitCount();
    file_put_contents($visitCountFile, ++$visitCount);
}
increaseVisitCount();
header('Content-Type: application/json');
echo json_encode(['visitCount' => getVisitCount()]);
?>




之后就能正常使用了
苦力怕论坛,感谢有您~

本版积分规则

本站
关于我们
联系我们
坛史纲要
官方
哔哩哔哩
技术博客
下载
网易版
安卓版
JAVA
反馈
意见建议
教程中心
更多
捐助本站
QQ群
QQ群

QQ群

访问手机版

访问手机版

手机版|小黑屋|系统状态|klpbbs.com

粤公网安备 44200002445329号 | 由 木韩网络 提供支持 | GMT+8, 2025-1-6 06:41

声明:本站与Mojang以及微软公司没有从属关系

Powered by Discuz! X3.4 粤ICP备2023071842号-3