... neuere Einträge
Freitag, 18. Juni 2010
Array-Deklaration in php
Am Freitag, 18. Jun 2010 im Topic 'E.T. phone home'
array("foo" => "bar", 12 => true);
array(5 => 43, 32, 56, "b" => 12);
array(5 => 43, 6 => 32, 7 => 56, "b" => 12);
Permalink (1 Kommentar) Kommentieren
Mannigfaltige Verzweigung in php
Am Freitag, 18. Jun 2010 im Topic 'E.T. phone home'
(bedingte Ausführung #2)
switch ($i) {
Quelle: http://www.php.net/manual/de/control-structures.switch.php
switch ($i) {
case "apple":
echo "i is apple";
break;
case "bar":
echo "i is bar";
break;
case "cake":
echo "i is cake";
break;
}echo "i is apple";
break;
case "bar":
echo "i is bar";
break;
case "cake":
echo "i is cake";
break;
Permalink (0 Kommentare) Kommentieren
Bedingte Ausführung in php
Am Freitag, 18. Jun 2010 im Topic 'E.T. phone home'
if ($a > $b) {
echo "a ist größer als b";
} else {
echo "a ist NICHT größer als b";
}
Permalink (0 Kommentare) Kommentieren
... ältere Einträge