From 68c1fd8f6124b25cd3bafb6b35b9845719fecbf2 Mon Sep 17 00:00:00 2001 From: Ken Date: Tue, 20 Jan 2004 02:25:57 +0000 Subject: [PATCH] Cross-referenced chunk_split() and str_split() [They're essentially synonymous.] git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@149271 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/chunk-split.xml | 5 +++-- reference/strings/functions/str-split.xml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/reference/strings/functions/chunk-split.xml b/reference/strings/functions/chunk-split.xml index 6aecf2a1f2..b6ca944614 100644 --- a/reference/strings/functions/chunk-split.xml +++ b/reference/strings/functions/chunk-split.xml @@ -1,5 +1,5 @@ - + @@ -34,7 +34,8 @@ $new_string = chunk_split(base64_encode($data)); - See also explode, split, + See also str_split, + explode, split, wordwrap and RFC 2045. diff --git a/reference/strings/functions/str-split.xml b/reference/strings/functions/str-split.xml index 75e37f7844..8e5f7b937a 100644 --- a/reference/strings/functions/str-split.xml +++ b/reference/strings/functions/str-split.xml @@ -1,5 +1,5 @@ - + str_split @@ -98,7 +98,8 @@ $arr1 = preg_split('//', $str, -1, PREG_SPLIT_NO_EMPTY); - See also preg_split, + See also chunk_split, + preg_split, split, count_chars, str_word_count, and