مەزكۇر كودنى بىكەتنىڭ ئاستى تەرپىگە قىستۇرسىڭىزلا بىكىتىڭىزنىڭ زىيارەت قىتىم سانىنى ئىستاستىكىلاپ ماڭىدۇ(ئىچىلىش قىتىم سانىنى ھىسابلايدۇ،ipبويىچە ھىسابلىمايدۇ)
<style>
.man{
font-family:黑体;
text-align: center;
font-size: 10px;
}
.footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: #424242;
color: #424242;
text-align: center;
padding: 5px;
box-sizing: border-box; /* 将内边距和边框计算在盒模型内 */
}
.man:hover {
color: red;
}
</style>
<div class="footer">
<p class="man"><a href="https://www.solterep.com" target="_top">Copyright©2022-2023 Solterep All Rights Reserved</a></p>
<?php
// 打开计数器文件,如果不存在则创建新文件并初始化为0
$counter_file = 'counter.txt';
if (!file_exists($counter_file)) {
file_put_contents($counter_file, '0');
}
// 读取当前计数器值并增加
$counter = intval(file_get_contents($counter_file));
$counter++;
file_put_contents($counter_file, strval($counter));
// 在 HTML 页面中显示计数器值
echo "<p class=\"man\">已访问 $counter 次</p>";
?>
<p class="man"><a href="#" target="_top">BYSOLTEREP</a></p>
</div>