Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wrote the code that save the ip of client into logs.txt but i want to remove the additional ip from the logs.txt . what am i going to do ?

$at = $_SERVER['REMOTE_ADDR'];
$log = fopen("logs.txt", "a"); 
fwrite($log, $at ."\n"); 
fclose($log);   

Thanks in advance .

share|improve this question

4 Answers

try following command

sort file | uniq > file.new

share|improve this answer

I would go with Salman's way because it works both in Windows or Linux boxes.

However, consider using a database such as SQLite that saves all the data in a single file. So, you will be able to query your data in a more flexible way.

share|improve this answer

Method #1

$at = $_SERVER['REMOTE_ADDR'];
$log = file_get_contents("logs.txt");
$log = trim($log); // removes leading/trailing blank lines
$log = explode("\n", $log);
$log[] = $at;
$log = array_unique($log);
$log = implode("\n", $log);
file_put_contents("logs.txt", $log);

Method #2

$at = $_SERVER['REMOTE_ADDR'];
$log = file_get_contents("logs.txt");
$temp = explode("\n", $log);
if(in_array($at, $temp) == false) {
    file_put_contents("logs.txt", $log . $at . "\n");
}
share|improve this answer

Using linux:

sort logs.txt | uniq

Btw usually the ip will be logged in the webservers access log.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.