<? php
$file = file(‘emails.txt ‘);
$file = array_unique($file);
$fp = fopen(‘emails.txt' , 'w‘);
fwrite($fp, implode("\n", $file));
fclose($fp);
?>