Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to fetch out the index/key from an array using its value in PHP?

If i have an array say :

array{
        0 => 'Me',
        1 => 'You',
        2 => 'We'
}

then here how to find that value "You" has key "1"? Using any php logic.

share|improve this question

3 Answers

up vote 5 down vote accepted

array_search does the job I think

share|improve this answer
If you add a link to the documentation, I'll give you +1 ;) – Felix Kling Jun 17 '10 at 10:27
If you add a canonical link to the documentation, I'll give you +1 ;) – salathe Jun 17 '10 at 11:09
$array =array{
    0 => 'Me',
    1 => 'You',
    2 => 'We'
}
$searchValue = "YOU"; 
$keys = array_keys($array, $searchValue); 

#test it 
print_r($keys); 

this would work fine.

share|improve this answer
$b = get_array_index($a, "YOU"); 
echo $b; //  print '1' 
share|improve this answer
1  
$a is your array variable – nectar Jun 17 '10 at 10:24
1  
get_array_index is not in the PHP manual – greg0ire Jun 17 '10 at 10:26
yup i know, i forgot to write my UD function for that. – nectar Jun 17 '10 at 10:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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