Folgendes Array ist vorgegeben:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
tmp_container[0]->[0]->[0] = CIS
tmp_container[0]->[0]->[1] = P1
tmp_container[0]->[0]->[2] = [b]A1[/b]
tmp_container[0]->[1]->[0] = off
tmp_container[0]->[2]->[0] = AAA
tmp_container[0]->[2]->[1] = xxx
tmp_container[0]->[3]->[0] = on
------------------------------------
tmp_container[1]->[0]->[0] = AAA
tmp_container[1]->[0]->[1] = yyy
tmp_container[1]->[1]->[0] = on
------------------------------------
tmp_container[2]->[0]->[0] = AAA
tmp_container[2]->[0]->[1] = zzz
tmp_container[2]->[1]->[0] = on
------------------------------------
tmp_container[3]->[0]->[0] = BBB
tmp_container[3]->[0]->[1] = xxx
tmp_container[3]->[1]->[0] = on
------------------------------------
tmp_container[4]->[0]->[0] = BBB
tmp_container[4]->[0]->[1] = yyy
tmp_container[4]->[1]->[0] = on
------------------------------------
tmp_container[5]->[0]->[0] = BBB
tmp_container[5]->[0]->[1] = zzz
tmp_container[5]->[1]->[0] = on
------------------------------------
tmp_container[6]->[0]->[0] = CIS
tmp_container[6]->[0]->[1] = P1
tmp_container[6]->[0]->[2] = [b]A2[/b]
tmp_container[6]->[1]->[0] = off
tmp_container[6]->[2]->[0] = AAA
tmp_container[6]->[2]->[1] = xxx
tmp_container[6]->[3]->[0] = on
------------------------------------
tmp_container[7]->[0]->[0] = AAA
tmp_container[7]->[0]->[1] = yyy
tmp_container[7]->[1]->[0] = on
------------------------------------
tmp_container[8]->[0]->[0] = AAA
tmp_container[8]->[0]->[1] = zzz
tmp_container[8]->[1]->[0] = on
------------------------------------
tmp_container[9]->[0]->[0] = BBB
tmp_container[9]->[0]->[1] = xxx
tmp_container[9]->[1]->[0] = on
------------------------------------
...
...
...
Bei dem 1. Index der "ersten Dimension" sind 7 Werte vorhanden.
Ab dem 2. Index (tmp_container[1]......) sind aber jeweils nur 3 Werte (z.B. AAA, yyy, on) vorhanden. Nun möchte ich, die 4 Werte (z.B. CIS, P1, A1, off) aus dem 1. Index vor die 3 Werte z.B. AAA, yyy, on) der anderen Indexe Kopieren.
Das soll natürlich nicht nur mit 7 und 3 Werten funktionieren, sonden mit beliebigen Werten.
Kann mir da jemand weiterhelfen. Ich komme einfach nicht weiter.