<?php $array = [ //"STOPSALES", "2023-03-10", "2023-03-11", "2023-03-12", "2023-03-13", "2023-03-14", "2023-03-15", "STOPSALES", "STOPSALES", "STOPSALES", "STOPSALES", "STOPSALES", "STOPSALES", "STOPSALES", "STOPSALES", "STOPSALES", "STOPSALES", "STOPSALES", "2023-03-27", "2023-03-28", "2023-03-29", "2023-03-30", "2023-03-31", "2023-04-01", "2023-04-02", "2023-04-03", ]; $result = []; $k = 0; foreach ($array as $i => $v) { if ($v !== 'STOPSALES') { if (($array[$i - 1] ?? null) === 'STOPSALES') { ++$k; } $result[$k][] = $v; } } var_export($result);
You have javascript disabled. You will not be able to edit any code.