Funktionen auf Strings | ![]() |
© Michael Kalinka, 2001 |
lc : lower case, Kleinschreibung | uc : upper case, Großschreibung |
$str = lc("HALLO"); => $str = "hallo" | $str = uc("hallo"); => $str = "HALLO" |
$str = lcfirst(WILLY); => $str = "wILLY" |
$str = ucfirst("willy"); => $str = "Willy" |