首页
IT
登录
6mi
u
盘
搜
搜 索
IT
计算访问量.php
计算访问量.php
xiaoxiao
2025-06-26
6
<!doctype
html
>
<
html
lang=
"en"
>
<
head
>
<
meta
charset=
"UTF-8"
>
<
meta
name=
"viewport"
content=
"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
>
<
meta
http-equiv=
"X-UA-Compatible"
content=
"ie=edge"
>
<
title
>
Document
</
title
>
</
head
>
<
body
>
<?php
if
(is_file(
"pv.txt"
)){
$pv
= file_get_contents(
"pv.txt"
);
$pv
++;
file_put_contents(
"pv.txt"
,
$pv
);
echo
$pv
;
}
else
{
$file
= fopen(
"pv.txt"
,
"w"
);
fwrite(
$file
,
"1"
);
fclose(
$file
);
echo
$pv
;
}
?>
</
body
>
</
html
>
转载请注明原文地址: https://ju.6miu.com/read-1300343.html
最新回复
(
0
)