There is an array:
$array['aKey']=array('a','b','c'); $array['bKey']=array('d','e','f'); $array['cKey']=array('g','h','i'); ... How to get a primary key without brute force for a value?
For example: find the bKey bKey if I have the value f .
Source: https://ru.stackoverflow.com/questions/568524/
All Articles
['a'=>'aKey','b'=>'aKey', ..., 'i'=>'cKey']). - Arnial