我想保留访问者的 ips 并将它们放在一个文件中。
我尝试了 fwrite() 函数,但我认为它是在文件上的 previus ip 上重写。
例子。
ip.txt 为空。
当我运行 write.php 脚本时,在 ip.txt 我有 xxxx ip(我的 ip)
如果我的朋友运行 write.php 脚本,在 ip.txt 我有 aaaa ip(仅限朋友的 ip)
我的ip在哪里?我想在 ip.txt 文件上有以下内容:
x.x.x.x ip1
a.a.a.a ip2
write.php 上的代码如下。
<?php
$file = fopen("ip.txt","w");
$ip=$_SERVER['REMOTE_ADDR'];
echo fwrite($file,$ip);
fclose($file);
?>