diff --git a/functions/strings.xml b/functions/strings.xml index 8b28fe8544..5c3cc83d66 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -1,5 +1,5 @@ - + String functions Strings @@ -240,8 +240,8 @@ $str = sprintf("The string ends in escape: %c", 27); e.g. converting base64_encode output to match RFC 2045 semantics. It inserts end (defaults to - "\r\n") every chunklen (defaults to 76) chars. It - returns the new string leaving the original string untouched. + "\r\n") every chunklen characters (defaults to + 76). It returns the new string leaving the original string untouched. <function>chunk_split</function> example @@ -255,7 +255,7 @@ $new_string = chunk_split(base64_encode($data)); See also explode, split - and word_wrap. + and wordwrap.