Hi all,
I have two pre-defined arrays;
array1 = car, 1, tony;
array2 = bus, 3, mike;
I would like to make these into an arrayed array such that arrayFinal[0][2]=tony.
I've looked at array_merge and array_combine, but they don't appear to do what I want. All the examples I can only find multidimensiona l array examples that use scripted input rather than using pre-existing arrays. Any ideas ?
Thanks in advance!
I have two pre-defined arrays;
array1 = car, 1, tony;
array2 = bus, 3, mike;
I would like to make these into an arrayed array such that arrayFinal[0][2]=tony.
I've looked at array_merge and array_combine, but they don't appear to do what I want. All the examples I can only find multidimensiona l array examples that use scripted input rather than using pre-existing arrays. Any ideas ?
Thanks in advance!
Comment