通过多个数组键对数组进行分组

时间:2013-01-25 14:39:58

标签: php arrays

我有一个Array,它是由两个独立数据库中的两个数据库查询组合而创建的,它看起来类似于:

$arr1[0] = array('part' => '1', 'address' => 'aaa', 'type' => '1', 'count' => 5);
$arr1[1] = array('part' => '1', 'address' => 'bbb', 'type' => '1', 'count' => 5);
$arr1[2] = array('part' => '1', 'address' => 'ccc', 'type' => '1', 'count' => 5);
$arr1[3] = array('part' => '2', 'address' => 'aaa', 'type' => '1', 'count' => 5);
$arr1[4] = array('part' => '2', 'address' => 'bbb', 'type' => '1', 'count' => 5);
$arr1[5] = array('part' => '2', 'address' => 'ccc', 'type' => '2', 'count' => 5);

我正在寻找一种通过'part'和'type'对这个数组进行分组的方法。我还需要知道'计数'的总数,因为它们被分组。

结果如下:

$arr2[1] = array('part' => '1', 'type' => '1', 'count' => 15);
$arr2[2] = array('part' => '2', 'type' => '1', 'count' => 10);
$arr2[3] = array('part' => '2', 'type' => '2', 'count' => 5);

但我只是看不出怎么做。我已经看到了一些按单个键/值分组的示例,但不是多个分组。

如果有人能够对此有所了解,那将非常感激。

5 个答案:

答案 0 :(得分:7)

此功能应该可以胜任。

function groupByPartAndType($input) {
  $output = Array();

  foreach($input as $value) {
    $output_element = &$output[$value['part'] . "_" . $value['type']];
    $output_element['part'] = $value['part'];
    $output_element['type'] = $value['type'];
    !isset($output_element['count']) && $output_element['count'] = 0;
    $output_element['count'] += $value['count'];
  }

  return array_values($output);
}

如果两个数据库都在同一个数据库服务器上,您可以使用SQL GROUP BY功能执行此操作。

答案 1 :(得分:1)

以下内容:

$arr2 = array();
foreach ($arr1 as $a) {

  unset($a['address']);
  $key = $a['type'] . '-' . $a['part'];

  if (isset($arr2[$key])) {
    $arr2[$key]['count'] += $a['count'];
  } else {
    $arr2[$key] = $a;
  }

}
$arr2 = array_values($arr2);

会输出

array
  0 => 
    array
      'part' => string '1' (length=1)
      'type' => string '1' (length=1)
      'count' => int 15
  1 => 
    array
      'part' => string '2' (length=1)
      'type' => string '1' (length=1)
      'count' => int 10
  2 => 
    array
      'part' => string '2' (length=1)
      'type' => string '2' (length=1)
      'count' => int 5

答案 2 :(得分:0)

这样的东西
 $newarr=array();
 foreach ( $arr as $Key => $Value ) {
 $newarr[$Value[part]][]=$arr[$key];
 }


 foreach ( $newarr[part] as $Key => $Value ) {
 ...
 }

答案 3 :(得分:0)

多键阵列分组的完整答案是

// *    $arr - associative multi keys data array
// *    $group_by_fields - array of fields to group by
// *    $sum_by_fields - array of fields to calculate sum in group

function array_group_by($arr, $group_by_fields = false, $sum_by_fields = false) {
    if ( empty($group_by_fields) ) return; // * nothing to group

    $fld_count = 'grp:count'; // * field for count of grouped records in each record group

    // * format sum by
    if (!empty($sum_by_fields) && !is_array($sum_by_fields)) {
        $sum_by_fields = array($sum_by_fields);
    }

    // * protected  from collecting
    $fields_collected = array();

    // * do
    $out = array();
    foreach($arr as $value) {
        $newval = array();
        $key = '';
        foreach ($group_by_fields as $field) {
            $key .= $value[$field].'_';
            $newval[$field] = $value[$field];
            unset($value[$field]);
        }
        // * format key
        $key = substr($key,0,-1);

        // * count
        if (isset($out[$key])) { // * record already exists
            $out[$key][$fld_count]++;
        } else {
            $out[$key] = $newval;
            $out[$key][$fld_count]=1;
        }
        $newval = $out[$key];

        // * sum by
        if (!empty($sum_by_fields)) {
            foreach ($sum_by_fields as $sum_field) {
                if (!isset($newval[$sum_field])) $newval[$sum_field] = 0;
                $newval[$sum_field] += $value[$sum_field];
                unset($value[$sum_field]);
            }
        }

        // * collect differencies
        if (!empty($value))
            foreach ($value as $field=>$v) if (!is_null($v)) {
                if (!is_array($v)) {
                    $newval[$field][$v] = $v;
                } else $newval[$field][join('_', $v)] = $v; // * array values 
            }

        $out[$key] = $newval;
    }
    return array_values($out);
}

答案 4 :(得分:0)

如果这个任务在我的一个项目中是必需的,我将制作一个不需要引用变量或任何迭代函数调用的代码段。

在循环内部,将复合临时键声明为变量(因为多次使用它)。使用复合键作为临时的第一级键将新行推入结果数组。

使用空合并运算符为给定组使用预先存在的计数,如果尚未遇到该组,则使用零。然后将新的<a [routerLink]="['/details',item.id]" [state]="{ data: {prova}}">..</a> 值添加到先前累积的count中。

此技术将在每次重复时无条件地覆盖遇到的组。这样,在整个迭代过程中,将使用正确的countparttype值更新数据。

循环结束后,通过调用count重新索引结果数组。

代码:(Demo

array_values()

输出:

$arr1 = [
    ['part' => '1', 'address' => 'aaa', 'type' => '1', 'count' => 5],
    ['part' => '1', 'address' => 'bbb', 'type' => '1', 'count' => 5],
    ['part' => '1', 'address' => 'ccc', 'type' => '1', 'count' => 5],
    ['part' => '2', 'address' => 'aaa', 'type' => '1', 'count' => 5],
    ['part' => '2', 'address' => 'bbb', 'type' => '1', 'count' => 5],
    ['part' => '2', 'address' => 'ccc', 'type' => '2', 'count' => 5]
];

$result = [];
foreach ($arr1 as $row) {
    $compositeKey = $row['part'] . '-' . $row['type'];
    $result[$compositeKey] = [
        'part' => $row['part'],
        'type' => $row['type'],
        'count' => ($result[$compositeKey]['count'] ?? 0) + $row['count']
    ];
}
var_export(array_values($result));

p.s。理想情况下,可以/应该在sql中执行此任务,但我们没有提供任何具体指导的细节。