Umgang mit Arrays
Moin zusammen,
erstmal sorry für den unpassenden Titel aber etwas treffenderes ist mir nicht eingefallen.
Ich habe folgendes Verständnisproblem im Umgang mit Arrays.
Ich versuche das mal an einem Bespiel
$test= "Hallo";
$test= "Welt";
foreach($test as $temp) {
print $temp;
}
Gibt ja aus HalloWelt
Soweit schön
$test[1]= "Hallo";
$test[2]= "Welt";
foreach($test as $temp) {
print $temp;
}
Macht das gleiche
Was ist aber wenn als Ausgabe haben wollen würde WeltHallo???
$test[2]= "Hallo";
$test[1]= "Welt";
foreach($test as $temp) {
print $temp;
}
Geht leider nicht...
Wie "macht man sowas"???
Gruß
Christoph
erstmal sorry für den unpassenden Titel aber etwas treffenderes ist mir nicht eingefallen.
Ich habe folgendes Verständnisproblem im Umgang mit Arrays.
Ich versuche das mal an einem Bespiel
$test= "Hallo";
$test= "Welt";
foreach($test as $temp) {
print $temp;
}
Gibt ja aus HalloWelt
Soweit schön
$test[1]= "Hallo";
$test[2]= "Welt";
foreach($test as $temp) {
print $temp;
}
Macht das gleiche
Was ist aber wenn als Ausgabe haben wollen würde WeltHallo???
$test[2]= "Hallo";
$test[1]= "Welt";
foreach($test as $temp) {
print $temp;
}
Geht leider nicht...
Wie "macht man sowas"???
Gruß
Christoph
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 87786
Url: https://administrator.de/contentid/87786
Ausgedruckt am: 26.11.2024 um 07:11 Uhr
4 Kommentare
Neuester Kommentar