PHP convert one dimensional array into multidimensional

AlucarD^

New Member
I have one array as \[code\]$tmpArr = array('A', 'B', 'C');\[/code\]I want to process this array and want new array as \[code\]$tmpArr[A][C] = C\[/code\]I.e last element becomes the value of final array.Can anyone suggest the solution? Please help. Thanks in advance
 
Back
Top