これはすでに回答済みであることはわかっていますが、これを使用してコードでもう少し拡張したので、uidだけで検索する必要はありませんでした。私は、その機能を必要とする可能性のある他の人と共有したいだけです。
これが私の例です。覚えておいてください、これが私の最初の答えです。特定の配列を1つだけ検索する必要があるため、param配列を取り出しましたが、簡単に追加できます。本質的には、単なるuid以外のものも検索したいと考えていました。
また、私の状況では、一意でない可能性がある他のフィールドによる検索の結果として返される複数のキーが存在する場合があります。
/**
* @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)で発見され、この第二の例が示すあなたと別の値(真)は、別の連想キー(採用)で発見され、すべての一致(鍵を返している場合、最初の名前を持つ人々 「テイラー」ANDが採用されています)。
/**
* @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 )