私がやろうとしているのは、出力をスプレッドシートで使用できるようにすることです。
配列タグなしで、または一緒にマッシュされていないが、アスタリスクで始まり、%記号で終わる出力の各アイテムが必要です。
<?php
$file = file_get_contents('aaa.txt'); //get file to string
$row_array = explode("\n",$file); //cut string to rows by new line
$row_array = array_count_values(array_filter($row_array));
foreach ($row_array as $key=>$counts) {
if ($counts==1)
$no_duplicates[] = $key;
}
//do what You want
echo '<pre>';
print_r($no_duplicates);
//write to file. If file don't exist. Create it
file_put_contents('no_duplicates.txt',$no_duplicates);
?>