我想删除 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);
}
?>
谁能帮我 ?