vote up 0 vote down star

Hi,

In PHP, say that you have an associative array like this:

$pets = array(
    "cats" => 1,
    "dogs" => 2,
    "fish" => 3
);

How would I find the key with the lowest value? Here, I'd be looking for cats.

Is there some built in PHP function that I've missed which does this? It would also be great if there was a solution that accounted for several values being identical, as below:

$pets = array(
    "cats" => 1,
    "dogs" => 1,
    "fish" => 2
);

Above, I wouldn't mind if it just output either; cats or dogs.

Thanks in advance.

flag

3 Answers

vote up 12 vote down check

array_keys is your friend:

$pets = array(
    "cats" => 1,
    "dogs" => 2,
    "fish" => 3
);
array_keys($pets, min($pets));  # array('cats')

P.S.: there is a dup here somewhere on SO (it had max instead of min, but I can distinctly remember it).

link|flag
That's a clever one =) Maybe you should mention that it returns a list of 1 or more values (unless the array is empty.) – Blixt Oct 19 at 12:25
I've fixed the comment, I hope it'll be clear now. – SilentGhost Oct 19 at 12:29
Thanks for a great answer. :) – Toytown Mafia Oct 19 at 12:35
very nice and elegant answer – easement Oct 19 at 13:01
vote up 0 vote down

Might try looking into these:

link|flag
vote up 1 vote down
$min_val = null;
$min_key = null;
foreach($pets as $pet => $val) {
  if ($val < $min_val) {
    $min_val = $min;
    $min_key = $key;
  }
}

You can also flip the array and sort it by key:

$flipped = array_flip($pets);
ksort($flipped);

Then the first key is the minimum, and its value is the key in the original array.

link|flag
You forgot to close a bracket. And using array_keys and min, as suggested by SilentGhost will be easier and faster. – Damien MATHIEU Oct 19 at 12:24
Thanks, I fixed the bracket. – Jeff Ober Oct 19 at 12:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.