Grouping and sum of elements from an array within foreach

I look at the result sets of two stored procedures, getting the results in one stored procedure based on the fields inside the other.

Two arrays containing result sets are $customersand $subcustomers.

foreach($customers as $customer)
{
      foreach($subcustomers as $subcustomer)
      {
            if($subcustomer['parent'] == $customer['id'])
            {                        
                  if($customer['innumber'] == null && $subcustomer['innumber'] != null)
                  {                       
                      $chartInboundSub['name'] = $customer['name'];
                      $chartInboundSub['label'] = $subcustomer['innumber'];
                      $chartInboundSub['countInbound'] = $customer['count'];
                      $chartInboundSub['minsInbound'] = ceil($customer['duration'] / 60);
                      $chartInboundSub['customerid'] = $customer['id'];

                      array_push($out['chartInbound'], $chartInboundSub);
                  }
            }
       }
}

The current output is print_r($out['chartInbound'])shown below:

Array
(
    [0] => Array
        (
            [countInbound] => 426
            [minsInbound] => 340
            [name] => Telekomm
            [label] => 01-02
            [customerid] => 6
        )

    [1] => Array
        (
            [countInbound] => 1
            [minsInbound] => 2
            [name] => Telekomm
            [label] => 01-02
            [customerid] => 6
        )

    [2] => Array
        (
            [countInbound] => 3
            [minsInbound] => 21
            [name] => Telekomm
            [label] => 080
            [customerid] => 6
        )

    [3] => Array
        (
            [countInbound] => 1920
            [minsInbound] => 15766
            [name] => Telekomm
            [label] => 084
            [customerid] => 6
        )

    [4] => Array
        (
            [countInbound] => 2332
            [minsInbound] => 17521
            [name] => Telekomm
            [label] => 084
            [customerid] => 6
        )
    ...
)

The above results should be grouped by name, label, customeridwith the summation countInboundand minsInbound, therefore:

The required conclusion should be:

Array
    (
        [0] => Array
            (
                [countInbound] => 427
                [minsInbound] => 342
                [name] => Telekomm
                [label] => 01-02
                [customerid] => 6
            )

        [1] => Array
            (
                [countInbound] => 3
                [minsInbound] => 21
                [name] => Telekomm
                [label] => 080
                [customerid] => 6
            )

        [2] => Array
            (
                [countInbound] => 4252
                [minsInbound] => 33287
                [name] => Telekomm
                [label] => 084
                [customerid] => 6
            )
        ...
    )
+4
source share
2 answers

I think this should work. I have not tested the code, so I do not do promises.

$map = array();
$i = 0;

foreach($customers as $customer)
{
      foreach($subcustomers as $subcustomer)
      {
            if($subcustomer['parent'] == $customer['id'])
            {                        
                  if($customer['innumber'] == null && $subcustomer['innumber'] != null)
                  {                       

                      $key = $customer['name'] . '/' . $subcustomer['innumber'] . '/' . $customer['id'];

                      if(isset($map[$key])) {
                            $out['chartInbound'][$map[$key]]['countInbound'] += $customer['count'];
                            $out['chartInbound'][$map[$key]]['minsInbound'] += ceil($customer['duration'] / 60);
                      }
                      else {
                          $out['chartInbound'][$i] = array(
                                  'name' => $customer['name'],
                                  'label' => $subcustomer['innumber'],
                                  'countInbound' => $customer['count'],
                                  'minsInbound' => ceil($customer['duration'] / 60),
                                  'customerid' => $customer['id'],
                          );
                          $map[$key] = $i++;
                    }
                  }
            }
       }
}

name, label customerid , . , - ( $out['chartInbound']). , countInbound minsInbound. $chartInboundSub $out['chartInbound'].

, . , , / , .

+2

foreach "", PHP.

, , , " ".

" ", an'if , , " ".

'eval.in'

:

/**
 * Output stored in here...
 */
$output = array();

// groupId consists of:   name, label, customerid

// read ahead - we need the current entry of the source array...
$currentEntry = current($source);

while ($currentEntry !== false) { // process the array / file / resultset etc.

    // start of a group... process the first record that every group has...
    $currentGroupId = getGroupId($currentEntry);
    $currentGroupCountInbound = $currentEntry['countInbound'];
    $currentGroupMinsInbound = $currentEntry['minsInbound'];

    // read the next record as we always 'read ahead' after processing a record...
    next($source);
    $currentEntry = current($source);

     while ($currentGroupId == getGroupId($currentEntry)) {
        // same group = total the values...

       $currentGroupCountInbound += $currentEntry['countInbound'];
       $currentGroupMinsInbound += $currentEntry['minsInbound'];

       // next entry in the input array - will end this group if not the same...
       next($source);
       $currentEntry = current($source);
    }

    // end of the current group -- output the information...
    // add it to an array... or whatever...
    $output[] = array('groupid' => $currentGroupId,
                       'countInbound' => $currentGroupCountInbound,
                       'minsInbound' => $currentGroupMinsInbound);
}

// show the output...
echo '<pre>';
print_r($output);
echo '</pre>';
exit;

// ---------------------------------
function getGroupId($entry = array())
{
    if (empty($entry)) {
        return array();
    }

    return array(
        $entry['name'], $entry['label'], $entry['customerid']
    );
}

:

Array(
    [0] => Array(
            [groupid] => Array(
                    [0] => Telekomm
                    [1] => 01-02
                    [2] => 6
                )
            [countInbound] => 427
            [minsInbound] => 342
        )

    [1] => Array(
            [groupid] => Array(
                    [0] => Telekomm
                    [1] => 080
                    [2] => 6
                )
            [countInbound] => 3
            [minsInbound] => 21
        )

    [2] => Array(
            [groupid] => Array(
                    [0] => Telekomm
                    [1] => 084
                    [2] => 6
                )
            [countInbound] => 4252
            [minsInbound] => 33287
        )
)
+1

All Articles