<?php $array = [ [ 'color' => 'red', 'size' => 'large', 'shape' => 'circle', 'startdate' => '2011-08-17', ], [ 'color' => 'red', 'size' => 'large', 'shape' => 'circle', 'startdate' => '2011-08-18', ], [ 'color' => 'red', 'size' => 'large', 'shape' => 'square', 'startdate' => '2011-08-20', ], [ 'color' => 'red', 'size' => 'large', 'shape' => 'circle', 'startdate' => '2011-08-22', ], [ 'color' => 'red', 'size' => 'large', 'shape' => 'circle', 'startdate' => '2011-08-20', ], [ 'color' => 'red', 'size' => 'large', 'shape' => 'circle', 'startdate' => '2011-08-23', ], [ 'color' => 'red', 'size' => 'large', 'shape' => 'circle', 'startdate' => '2011-08-19', ], ]; usort($array, fn($a, $b) => $a['startdate'] <=> $b['startdate']); $result = []; foreach ($array as $row) { $compositeKey = implode( '_', [$row['color'], $row['size'], $row['shape']] ); if ( !isset($ref[$compositeKey]) || ($row['startdate'] != date('Y-m-d', strtotime(($ref[$compositeKey]['enddate'] ?? $ref[$compositeKey]['startdate']) . ' + 1 day'))) ) { if (isset($ref[$compositeKey])) { unset($ref[$compositeKey]); } $ref[$compositeKey] = $row; $result[] =& $ref[$compositeKey]; } else { $ref[$compositeKey]['enddate'] = $row['startdate']; } } var_export($result);
You have javascript disabled. You will not be able to edit any code.