<?php $a = [ [ 0 => 'Name', 1 => 'Address ' ], [ 0 => 'Name 1', 1 => 'Address 1' ], [ 0 => 'Name 2', 1 => 'Address 2' ], [ 0 => 'Name 3', 1 => 'Address 3' ], [ 0 => 'Name 4', 1 => 'Address 4' ] ]; $firstValue = array_shift($a); foreach($a as &$v){ $v = array_combine($firstValue,$v); } print_r($a);
You have javascript disabled. You will not be able to edit any code.