I got an associative array and I need to find the numeric position of a key. I could loop through to find it but but is there a better way build into php?

  $a = array(
      'blue' => 'nice',
      'car' => 'fast',
      'number' => 'none'
  );

  // echo (find numeric index of $a['car']); // output: 1
link|improve this question

feedback

4 Answers

up vote 25 down vote accepted
echo array_search("car",array_keys($a));
link|improve this answer
awesome, thank you so much. – n00b Jul 29 '10 at 18:30
Does PHP guarantee the order of an associative array? – Kevin Burke May 1 at 21:50
@KevinBurke It's not going to re-order it unless you use a sort function. Not sure what sort of guarantee you're looking for, but it's not like the JavaScript model where there is no static order to associative arrays. – Fosco May 1 at 23:20
feedback
$blue_keys = array_search("blue", array_keys($a));

http://php.net/manual/en/function.array-keys.php

link|improve this answer
feedback

  $a = array(
      'blue' => 'nice',
      'car' => 'fast',
      'number' => 'none'
  );  
var_dump(array_search('car', array_keys($a)));
var_dump(array_search('blue', array_keys($a)));
var_dump(array_search('number', array_keys($a)));

link|improve this answer
feedback

a solution i came up with... probably pretty inefficient in comparison tho Fosco's solution:

 protected function getFirstPosition(array$array, $content, $key = true) {

  $index = 0;
  if ($key) {
   foreach ($array as $key => $value) {
    if ($key == $content) {
     return $index;
    }
    $index++;
   }
  } else {
   foreach ($array as $key => $value) {
    if ($value == $content) {
     return $index;
    }
    $index++;
   }
  }
 }
link|improve this answer
Yeah, PHP has thousands of builtin functions for a reason. These are usually much faster than equivalent logic written out the long way in PHP code. – Bill Karwin Jul 29 '10 at 18:37
1  
This is probably faster than array_search, which does a sort first and so it painfully slow. – Alasdair Jan 25 at 5:55
feedback

Your Answer

 
or
required, but never shown

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