<?php $front = ["front_first", "front_second"]; $inside = ["inside_first", "inside_second", "inside_third"]; $back = ["back_first", "back_second", "back_third", "back_fourth"]; var_export( array_merge( ...array_map( function(...$cols) { static $lastSet; foreach ($cols as $i => &$v) { $v ??= $lastSet[$i]; } $lastSet = $cols; return $cols; }, $back, $front, $inside ) ) );
You have javascript disabled. You will not be able to edit any code.