我正在开发一个点击计数器,只要新访问者访问该页面就会计算,因此对于每个新访问者,我都会创建一个新的.txt文件。
该文件存储为“hits /".$_ SERVER ['REMOTE_ADDR']。”。txt“。
这是我的代码:
<?php
$visits = 0;
$hits = 0;
$fileResource = @fopen("hits/".$remote_addr.".txt","w+");
fwrite($fileResource,
"IP Adress:".$remote_addr."
Timestamp:".time().""
);
$fileResource = @fopen("hits/".$remote_addr.".txt","r");
$fileContent = @fread($fileResource,100000);
preg_match_all("/(.*):(.*)\n/i",$fileContent,$fileMatches);
foreach(glob("hits/*.txt") as $hit){
$hits++;
}
?>
所以我想做的是:
编辑:我正在玩preg_match_all(),我发现了这个问题。它就像删除\ n
一样简单答案 0 :(得分:0)
尝试在匹配表达式中用\\ n替换\ n。 \ n是字面字符n。 \ n是字面\后跟n。