我有電子郵件 列表的TXT文件,現在我已經重複的電子郵件列表名稱 例子:現在我有重複的電子郵件列表名稱
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
我想表明我只有一次郵件
而結果:
[email protected]
[email protected]
[email protected]
此代碼,我希望得到的幫助:
<? Php
$ Username = $ argv [1];
$ File = file_get_contents ("./Emailist.txt");
$ Ex = explode ("\ r \ n", $ file);
for ($ i = 0; $ i <count ($ ex); $ i + +)
{
echo $ ex [$ i];
}
?>
tanks1
您正在尋找'array_unique()'。你知道以'$ varname'的方式編寫變量不起作用嗎? – 2011-04-01 10:32:51