मुझे पता है कि यह पहले से ही उत्तर दिया गया था, लेकिन मैंने इसका इस्तेमाल किया और इसे अपने कोड में थोड़ा और बढ़ा दिया ताकि आप केवल यूआईडी द्वारा खोज न करें। मैं इसे किसी और के लिए साझा करना चाहता हूं जिसे उस कार्यक्षमता की आवश्यकता हो सकती है।
यहाँ मेरा उदाहरण है और कृपया नंगे हों यह मेरा पहला उत्तर है। मैंने परम सरणी लिया क्योंकि मुझे केवल एक विशिष्ट सरणी की खोज करने की आवश्यकता थी, लेकिन आप इसे आसानी से जोड़ सकते हैं। मैं अनिवार्य रूप से केवल यूआईडी से अधिक खोज करना चाहता था।
इसके अलावा, मेरी स्थिति में अन्य क्षेत्रों द्वारा खोज के परिणामस्वरूप लौटने के लिए कई कुंजी हो सकती हैं जो अद्वितीय नहीं हो सकती हैं।
/**
* @param array multidimensional
* @param string value to search for, ie a specific field name like name_first
* @param string associative key to find it in, ie field_name
*
* @return array keys.
*/
function search_revisions($dataArray, $search_value, $key_to_search) {
// This function will search the revisions for a certain value
// related to the associative key you are looking for.
$keys = array();
foreach ($dataArray as $key => $cur_value) {
if ($cur_value[$key_to_search] == $search_value) {
$keys[] = $key;
}
}
return $keys;
}
बाद में, मैंने एक और मूल्य और साहचर्य कुंजी की खोज करने की अनुमति देने के लिए यह लिखना समाप्त कर दिया। तो मेरा पहला उदाहरण आपको किसी भी विशिष्ट साहचर्य कुंजी में एक मूल्य के लिए खोज करने और सभी मैचों को वापस करने की अनुमति देता है।
यह दूसरा उदाहरण आपको दिखाता है कि एक मूल्य ('टेलर') एक निश्चित साहचर्य कुंजी (first_name ) में पाया जाता है और दूसरा मान (सत्य) एक अन्य साहचर्य कुंजी (नियोजित) में पाया जाता है, और सभी मैचों को लौटाता है (कुंजी जहां पहले नाम वाले लोग हैं) 'टेलर' और कार्यरत हैं)।
/**
* @param array multidimensional
* @param string $search_value The value to search for, ie a specific 'Taylor'
* @param string $key_to_search The associative key to find it in, ie first_name
* @param string $other_matching_key The associative key to find in the matches for employed
* @param string $other_matching_value The value to find in that matching associative key, ie true
*
* @return array keys, ie all the people with the first name 'Taylor' that are employed.
*/
function search_revisions($dataArray, $search_value, $key_to_search, $other_matching_value = null, $other_matching_key = null) {
// This function will search the revisions for a certain value
// related to the associative key you are looking for.
$keys = array();
foreach ($dataArray as $key => $cur_value) {
if ($cur_value[$key_to_search] == $search_value) {
if (isset($other_matching_key) && isset($other_matching_value)) {
if ($cur_value[$other_matching_key] == $other_matching_value) {
$keys[] = $key;
}
} else {
// I must keep in mind that some searches may have multiple
// matches and others would not, so leave it open with no continues.
$keys[] = $key;
}
}
}
return $keys;
}
फ़ंक्शन का उपयोग
$data = array(
array(
'cust_group' => 6,
'price' => 13.21,
'price_qty' => 5
),
array(
'cust_group' => 8,
'price' => 15.25,
'price_qty' => 4
),
array(
'cust_group' => 8,
'price' => 12.75,
'price_qty' => 10
)
);
$findKey = search_revisions($data,'8', 'cust_group', '10', 'price_qty');
print_r($findKey);
परिणाम
Array ( [0] => 2 )