Jump to content

Array_unique - how-to get first item value in repeated array item


mapg

Recommended Posts

Hi everybody,

 

I would like to know how-to get the first value of repeated items too in an array using something like array_unique.

 

With array_unique I get the last one in the list as here ...

<?php
$array_test = array('111' => 'first one', '111' => 'middle one', '111' => 'last one', '222' => 'first one', '222' => 'last one', '333' => 'first one', '444' => 'first one');

$array_test = array_intersect($array_test, array_unique($array_test));

echo '<pre>';
print_r($array_test);
echo '</pre>';
?>

 

This will print ...

Array

(

    [111] => last one

    [222] => last one

    [333] => first one

    [444] => first one

)

 

... and I would like to print ...

Array

(

    [111] => first one

    [222] => first one

    [333] => first one

    [444] => first one

)

 

Is there some way to get that array_unique works like that or some other way to remove duplicated items but getting its first value not the last?

 

Thank you very much in advance. This issue is important for me.

 

Mapg

Link to comment
Share on other sites

If you have a box, you can put things in this box, yet when you do the thing that was in it previously gets replaced by the new thing. Therefore every time you tell the associative array that there is a new element to be put in a named position, it replaces it totally. Try this to see what I mean!

$array_test = array('111' => 'first one', '111' => 'middle one', '111' => 'last one', '222' => 'first one', '222' => 'last one', '333' => 'first one', '444' => 'first one');
echo $array_test['111']."<br><br>";
while (list($k, $v) = each($array_test))
{
echo "".$k.": ".$v."<br>";
}

Link to comment
Share on other sites

In your $array_test you don't have multiple value for some key, just last one

try

<?php
$array_test = array('111' => 'first one', '111' => 'middle one', '111' => 'last one', '222' => 'first one', '222' => 'last one', '333' => 'first one', '444' => 'first one');



echo '<pre>';
print_r($array_test);
echo '</pre>';
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.