I have the following problem:
$multidmimensional = array(
[0] => array(
[0] => 1,
[1] => 2,
[2] => 3
);
[1] => array(
[0] => 5,
[1] => 6,
[2] => 7
);
...
[2] => array(
[0] =>,4
[1] => 5,
);
);
I can have one or more (nested) arrays and as an example we take the first two of the above arrays:
I have to rearrange them as follows:
15
16
17
25
26
27
36
37
38
If I had, for example, these three arrays, I should get this result:
154
164
174
155
165
175
254
264
274
255
265
275
364
374
384
365
375
385
I am having trouble creating an algorithm that would fix this problem. Can someone help me? Thanks in advance.
source
share