<?php $array = [ ["name", "address", "city"], ["anoop", "palasis", "Indore"], ["ravinder", "annapurna", "Indore"] ]; array_walk( $array, fn(&$row, $_, $header) => $row = array_combine($header, $row), array_shift($array) ); var_export($array);
You have javascript disabled. You will not be able to edit any code.