From 629f0ac924906b4614c4651fd841d33aa92e0178 Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Fri, 15 Nov 2002 20:09:30 +0000 Subject: [PATCH] Documented a new mbstring function mb_substr_count() git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@104356 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../mbstring/functions/mb-substr-count.xml | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 reference/mbstring/functions/mb-substr-count.xml diff --git a/reference/mbstring/functions/mb-substr-count.xml b/reference/mbstring/functions/mb-substr-count.xml new file mode 100644 index 0000000000..7a28b14c41 --- /dev/null +++ b/reference/mbstring/functions/mb-substr-count.xml @@ -0,0 +1,64 @@ + + + + + mb_substr_count + Count the number of substring occurrences + + + Description + + intmb_substr_count + stringhaystack + stringneedle + stringencoding + + + mb_substr_count returns the number of times the + needle substring occurs in the + haystack string. + + + encoding specifies the encoding for + needle and haystack. + If omitted, internal character encoding is used. + + + + <function>mb_substr_count</function> example + + +]]> + + + + + See also substr_count, + mb_strpos, mb_substr. + + + + +