<?php $headers = ['Color', 'Length', 'Waist']; $data = [ [ ['green', 'Color'], ['23', 'Length'], ], [], [ ['23', 'Length'], ['24', 'Waist'], ], ]; $defaults = array_fill_keys($headers, null); var_export( array_map( function($item) use($defaults) { return array_replace($defaults, array_column($item, 0, 1)); }, $data ) );
You have javascript disabled. You will not be able to edit any code.