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.
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.
$array =array{
0 => 'Me',
1 => 'You',
2 => 'We'
}
$searchValue = "YOU";
$keys = array_keys($array, $searchValue);
#test it
print_r($keys);
this would work fine.