a have array in php like that :
array2 = [ [ 'a', 'b', 'c', ], [ 'd', 'e', 'f', ] ];
i need this result :
$array1_merge_array2 = [ [ '1' => ['a'], '2' => ['b'], '3' => ['c'] ], [ '1 ' => ['d'], '2' => ['e'], '3' => ['f'] ] ]
please can you help me ,i wait any answer
Anonymous Asked question May 14, 2021
Recent Comments