diff --git a/functions/strings.xml b/functions/strings.xml index b7af603fde..bfa379c0f2 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -1,5 +1,5 @@ - + String functions Strings @@ -196,6 +196,12 @@ $str .= chr(27); /* add an escape character at the end of $str */ $str = sprintf("The string ends in escape: %c", 27); + + + You can find an ASCII-table over here: &url.asciitable;. + + This function complements ord. See also sprintf with a format string of %c. @@ -1532,6 +1538,10 @@ if (ord($str) == 10) { + + You can find an ASCII-table over here: &url.asciitable;. + See also chr.