siehe auch: Figurenbrut und Marcofinkenstein.de
Zum Opferberg →
Freitag, 18. Juni 2010
Array-Deklaration in php

array("foo" => "bar", 12 => true);
array(5 => 43, 32, 56, "b" => 12);
array(5 => 43, 6 => 32, 7 => 56, "b" => 12);
Quelle: http://www.php.net/manual/de/language.types.array.php

Permalink (1 Kommentar)   Kommentieren

 


Mannigfaltige Verzweigung in php
(bedingte Ausführung #2)


switch ($i) {
case "apple":
echo "i is apple";
break;
case "bar":
echo "i is bar";
break;
case "cake":
echo "i is cake";
break;
}
Quelle: http://www.php.net/manual/de/control-structures.switch.php

Permalink (0 Kommentare)   Kommentieren

 


Bedingte Ausführung in php

if ($a > $b) {
echo "a ist größer als b";
} else {
echo "a ist NICHT größer als b";
}
Quelle: http://www.php.net/manual/de/control-structures.else.php

Permalink (0 Kommentare)   Kommentieren