I have one array like
$tmpArr = array('A', 'B', 'C');
I want to process this array and I want the new array to be
$tmpArr[A][B][C] = C
I. The last element becomes the value of the final array.
Can anyone suggest a solution? Please help. thanks in advance
source
share