From 953739fe5e4b52eecd2073d6c7ac3c62ab1c48e9 Mon Sep 17 00:00:00 2001 From: jim winstead Date: Wed, 2 Jan 2002 12:26:33 +0000 Subject: [PATCH] chunk_split: one more prose tweak, fix see also of wordwrap git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@66681 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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.