我将两个数组合并在一起,两个数组都包含字符串(url)和int(score)。以下是外围的样本。每当字符串重复时,我需要删除该字符串及其对应的int。例如,应删除第4行(www.thebeatles.com/- 30)。第5行和第6行也应该删除,因为它们看起来已经有了不同的分数。
http://www.thebeatles.com/ - 55
http://en.wikipedia.org/wiki/The_Beatles - 49
http://www.beatlesstory.com/ - 45
http://www.thebeatles.com/ - 30
http://en.wikipedia.org/wiki/The_Beatles - 28
http://www.beatlesstory.com/ - 26
http://www.beatlesagain.com/ - 24
http://www.thebeatlesrockband.com/ - 23
http://www.last.fm/music/The+Beatles - 22
http://itunes.apple.com/us/artist/the-beatles/id136975 - 20
http://www.youtube.com/watch?v=U6tV11acSRk - 18
http://blekko.com/ws/http://www.thebeatles.com/+/seo - 17
http://www.adriandenning.co.uk/beatles.html - 16
http://www.npr.org/artists/15229570/the-beatles - 15
http://mp3.com/artist/The%2BBeatles - 14
http://www.beatles.com/ - 13
http://www.youtube.com/watch?v=TU7JjJJZi1Q - 12
http://www.guardian.co.uk/music/thebeatles - 11
http://www.cirquedusoleil.com/en/shows/love/default.aspx - 9
http://www.recordingthebeatles.com/ - 7
http://www.beatlesbible.com/ - 5
我是PHP的新手,我尽最大努力让array_unique()工作失败。非常感谢一些帮助人员!
答案 0 :(得分:0)
您可以将链接作为包含链接和分数的数组的键。对应键,总会有一个值。但是最后添加的那个将在你的最终数组中出现。
答案 1 :(得分:0)
嗯,即使在技术上,这些字符串也不是唯一的。即它们完全不同。
因此,array_unique()不会提供所需的输出。解决此问题的一种方法是定义一个单独的数组并分别存储URI和数字。一个可管理的形式就是这个。
array(
array("http://www.thebeatles.com", 55),
array("http://www.thebeatles.com", 30)
);
答案 2 :(得分:0)
这是一个合并两个数组并丢弃任何重复的函数,希望它有所帮助:
function merge_links($arr_l, $arr_r) {
$new_links = array();
$links = array_merge($arr_l, $arr_r); //the big list with every links
foreach($links as $link) {
$found = false; //did we found a duplicate?
//check if we already have it
foreach($new_links as $new_link) {
if($new_link['url'] == $link['url']) {
//duplicate
$found = true;
break;
}
}
//not found, so insert it
if(!$found) {
$new_links[] = $link;
}
}
return $new_links;
}
$arr1[0]['url'] = 'http://test.nl';
$arr1[0]['score'] = 30;
$arr1[1]['url'] = 'http://www.google.nl';
$arr1[1]['score'] = 30;
$arr2[0]['url'] = 'http://www.tres.nl';
$arr2[0]['score'] = 30;
$arr2[1]['url'] = 'http://test.nl';
$arr2[1]['score'] = 30;
print_r(merge_links($arr1, $arr2));