我想将每个用户添加到一个数组中并在我之前检查重复项。
$spotcount = 10;
for ($topuser_count = 0; $topuser_count < $spotcount; $topuser_count++) //total spots
{
$spottop10 = $ids[$topuser_count];
$top_10 = $gowalla->getSpotInfo($spottop10);
$usercount = 0;
$c = 0;
$array = array();
foreach($top_10['top_10'] as $top10) //loop each spot
{
//$getuser = substr($top10['url'],7); //strip the url
$getuser = ltrim($top10['url'], " users/" );
if ($usercount < 3) //loop only certain number of top users
{
if (($getuser != $userurl) && (array_search($getuser, $array) !== true)) {
//echo " no duplicates! <br /><br />";
echo ' <a href= "http://gowalla.com'.$top10['url'].'"><img width="90" height="90" src= " '.$top10['image_url'].' " title="'.$top10['first_name'].'" alt="Error" /></a> ';
$array[$c++] = $getuser;
}
else {
//echo "duplicate <br /><br />";
}
}
$usercount++;
}
print_r($array);
}
以前的代码打印:
Array ( [0] => 62151 [1] => 204501 [2] => 209368 ) Array ( [0] => 62151 [1] => 33116 [2] => 122485 ) Array ( [0] => 120728 [1] => 205247 [2] => 33116 ) Array ( [0] => 150883 [1] => 248551 [2] => 248558 ) Array ( [0] => 157580 [1] => 77490 [2] => 52046 )
哪个错了。它会检查重复项,但只检查每个foreach循环的内容而不是整个数组。如果我将所有内容存储到$ array中,这是怎么回事?
答案 0 :(得分:1)
array_search()
会返回您正在搜索的内容的密钥,如果它在数组中。你正在对!==
进行严格的不等式比较true
,所以如果array_search在数组中找到一个条目(比如,key是7),那么7 !== TRUE
为真,你继续将条目添加到新阵列。
你想要的是array_search(...) !== FALSE
,只有当array_search失败时才会评估为真。
此外,您无需使用$c++
数组索引计数器。您可以使用$array[] = $getuser
,它会自动将$ getuser粘贴到数组末尾的新条目中。
答案 1 :(得分:0)
将下面的函数用于多维数组
function in_multiarray($elem, $array)
{
$top = sizeof($array) - 1;
$bottom = 0;
while($bottom <= $top)
{
if($array[$bottom] == $elem)
return true;
else
if(is_array($array[$bottom]))
if(in_multiarray($elem, ($array[$bottom])))
return true;
$bottom++;
}
return false;
}
有关详细信息,请参阅in_array()
答案 2 :(得分:0)
使用标准PHP库(SPL)更快更干净递归多维数组搜索。
function in_array_recursive($needle, $haystack) {
$it = new RecursiveIteratorIterator(new RecursiveArrayIterator($haystack));
foreach($it as $element) {
if($element == $needle) {
return true;
}
}
return false;
}