这是我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?php
class visitors
{
static $i;
function __construct()
{
$this->checkIp();
}
function createFile()
{
$fp=fopen("visit.txt","a+");
if($fp)
{
echo "<br /> File created";
return $fp;
}
else
{
echo "File creation Error Check permissions";
exit;
}
}
function fetchIp()
{
$ip=$_SERVER['REMOTE_ADDR'];
//$ip=ip2long($ip);
return $ip;
}
function writeFile()
{
$fp=$this->createFile();
$ip=$this->fetchIp();
//echo $ip;
$space="\r\n";
fwrite($fp,$ip.$space);
//self::$i++;
//echo self::$i;
}
function checkIp()
{
$fp=$this->createFile();
$ip=$this->fetchIp();
while(!feof($fp))
{
$data.=fgets($fp);
}
$uip=explode("\r\n",$data);
foreach($uip as $key)
{
if(strpos($key,$ip)!==0)
{
$this->writeFile();
}
}
}
}
$v=new visitors();
?>
</body>
</html>
我正在尝试将每个访问者的 ip 地址存储在一个文本文件中,如果同一个访问者第二次来,他的 ip 将被写入文本文件。为了实现这一点,我读取了文件并与当前 ip 进行比较,如果他们是一样的,它不调用写入函数。问题是一切正常,但文件每次都在换行符中使用相同的 ip 写入。比较部分失败。请帮我解决这个问题。留下静态 i 变量部分。我有评论说,所以没问题。谢谢。
注意:我已经阅读了在 PHP 中将 IP 地址与通配符进行比较的优化方法?并从中得到了 strpos 的想法。在此之前我使用了 ip2long 和 long2ip 但它也导致了同样的错误。我还从这里阅读了 PHP 不支持无符号整数。这会影响我的比较操作,因为 ip 地址是无符号的 32位整数。