URLのリストで重複するドメインを削除したい、例えば以下はテキストファイルです
http://www.exampleurl.com/something.php
http://www.domain.com/something.php
http://www.exampleurl.com/something111.php
http://www.exampleurl.com/something111.php
http://www.exampleurl.com/something222.php
重複するドメインを削除する必要があり、以下のリストが必要です
http://www.exampleurl.com/something.php
http://www.domain.com/something.php
以下は、テキストファイル内の重複を削除するだけのコードです。
$text = array_unique(file($filename));
$f = @fopen("promo1.txt",'w+');
if ($f) {
fputs($f, join('',$text));
fclose($f);
}
?>
誰かが私を助けることができますか?