20

配列リストがあります (この例では携帯電話を使用しています)。複数のキーと値のペアを検索して、その親配列インデックスを返すことができるようにしたいと考えています。

たとえば、ここに私の配列があります:

// $list_of_phones (array)
Array
(
    [0] => Array
        (
            [Manufacturer] => Apple
            [Model] => iPhone 3G 8GB
            [Carrier] => AT&T
        )

    [1] => Array
        (
            [Manufacturer] => Motorola
            [Model] => Droid X2
            [Carrier] => Verizon
        )
)

次のようなことができるようになりたいと思っています。

// This is not a real function, just used for example purposes
$phone_id = multi_array_search( array('Manufacturer' => 'Motorola', 'Model' => 'Droid X2'), $list_of_phones );

// $phone_id should return '1', as this is the index of the result.

これをどのように行うことができるか、または行うべきかについてのアイデアや提案はありますか?

4

7 に答える 7

26

おそらくこれは役に立つでしょう:

  /**
   * Multi-array search
   *
   * @param array $array
   * @param array $search
   * @return array
   */
  function multi_array_search($array, $search)
  {

    // Create the result array
    $result = array();

    // Iterate over each array element
    foreach ($array as $key => $value)
    {

      // Iterate over each search condition
      foreach ($search as $k => $v)
      {

        // If the array element does not meet the search condition then continue to the next element
        if (!isset($value[$k]) || $value[$k] != $v)
        {
          continue 2;
        }

      }

      // Add the array element's key to the result array
      $result[] = $key;

    }

    // Return the result array
    return $result;

  }

  // Output the result
  print_r(multi_array_search($list_of_phones, array()));

  // Array ( [0] => 0 [1] => 1 )

  // Output the result
  print_r(multi_array_search($list_of_phones, array('Manufacturer' => 'Apple')));

  // Array ( [0] => 0 )

  // Output the result
  print_r(multi_array_search($list_of_phones, array('Manufacturer' => 'Apple', 'Model' => 'iPhone 6')));

  // Array ( )

出力が示すように、この関数は、すべての検索基準を満たす要素を持つすべてのキーの配列を返します。

于 2012-12-18T23:24:01.583 に答える
5

array_intersect_key と array_intersect と array_search を使用できます

array_intersect_key PHPマニュアルをチェックして、一致するキーを持つアイテムの配列を取得してください

値が一致するアイテムの場合に配列を取得するためのarray_intesect phpマニュアル

u を使用して配列内のキーの値を取得できます$array[key]

array_search を使用して配列内の値のキーを取得します$key = array_search('green', $array);

php.net/manual/en/function.array-search.php

于 2012-12-17T23:07:54.757 に答える
5

私は最終的に次のことをしました。きれいではありませんが、非常にうまく機能します。読んでいる人は、DRYerの回答で自由に更新してください。

// Variables for this example
$carrier = 'Verizon';
$model = 'Droid X2';
$manufacturer = 'Motorola';

// The foreach loop goes through each key/value of $list_of_phones and checks
// if the given value is found in that particular array. If it is, it then checks
// a second parameter (model), and so on.
foreach ($list_of_phones as $key => $object)
{
    if ( array_search($carrier, $object) )
    {
        if ( array_search($model, $object) )
        {
            if ( array_search($manufacturer, $object) )
            {
                // Return the phone from the $list_of_phones array
                $phone = $list_of_phones[$key];
            }
        }
    }
}

魅力のように機能します。

于 2012-12-18T22:50:08.373 に答える
1

これは @Boolean_Type と同じですが、単純化するために少し強化されています。

function multi_array_search($array, $search)
{
    $result = array();

    foreach ($array as $key => $val)
    {
        foreach ($search as $k => $v)
        {
            // We check if the $k has an operator.
            $operator = '=';
            if (preg_match('(<|<=|>|>=|!=|=)', $k, $m) === 1)
            {
                // We change the operator.
                $operator = $m[0];

                // We trim $k to remove white spaces before and after.
                $k = trim(str_replace($m[0], '', $k));
            }

            switch ($operator)
            {
                case '=':
                    $cond = ($val[$k] != $v);
                    break;

                case '!=':
                    $cond = ($val[$k] == $v);
                    break;

                case '>':
                    $cond = ($val[$k] <= $v);
                    break;

                case '<':
                    $cond = ($val[$k] >= $v);
                    break;

                case '>=':
                    $cond = ($val[$k] < $sv);
                    break;

                case '<=':
                    $cond = ($val[$k] > $sv);
                    break;
            }

            if (( ! isset($val[$k]) && $val[$k] !== null) OR $cond)
            {
                continue 2;
            }
        }

        $result[] = $key;
    }

    return $result;
}  

このようにして、次のように簡単に検索できます。

$keys = multi_array_search($phonesList, array(
    'Manufacturer' => 'Motorola',
    'Cost >'       => '130000',
));   

見つかった場合は、次のようなインデックスの配列がありますarray(1, 25, 33)(これは単なる例です)。

于 2017-12-21T00:53:23.980 に答える