开发者

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

开发者 https://www.devze.com 2023-01-04 00:04 出处:网络
how to fetch ou开发者_C百科t the index/key from an array using its valuein PHP? If i have an array say :

how to fetch ou开发者_C百科t 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.


array_search does the job I think


$array =array{
    0 => 'Me',
    1 => 'You',
    2 => 'We'
}
$searchValue = "YOU"; 
$keys = array_keys($array, $searchValue); 

#test it 
print_r($keys); 

this would work fine.


$b = get_array_index($a, "YOU"); 
echo $b; //  print '1' 
0

精彩评论

暂无评论...
验证码 换一张
取 消