summaryrefslogtreecommitdiff
path: root/ext/mbstring/tests/mb_substr_count_variation4.phpt
blob: 29d1d6e22e033b29b19237fd0e2428d1295ecbdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
--TEST--
Test mb_substr_count() function : variation - pass a $needle that overlaps in $haystack
--SKIPIF--
<?php
extension_loaded('mbstring') or die('skip');
function_exists('mb_substr_count') or die("skip mb_substr_count() is not available in this build");
?>
--FILE--
<?php
/* Prototype  : int mb_substr_count(string $haystack, string $needle [, string $encoding])
 * Description: Count the number of substring occurrences
 * Source code: ext/mbstring/mbstring.c
 */

/*
 * Pass mb_substr_count() a $needle that overlaps in $haystack and see whether
 * it counts only the first occurrence or all other occurrences regardless whether they
 * were part of previous match
 */

echo "*** Testing mb_substr_count() : usage variations ***\n";


echo "\n-- ASCII String --\n";
$string_ascii = 'abcabcabc';
var_dump(mb_substr_count($string_ascii, 'abcabc')); //needle overlaps in haystack

echo "\n-- Multibyte String --\n";
$string_mb = base64_decode('5pel5pys6Kqe5pel5pys6Kqe5pel5pys6Kqe');
$needle_mb = base64_decode('5pel5pys6Kqe5pel5pys6Kqe');
var_dump(mb_substr_count($string_mb, $needle_mb, 'utf-8'));


echo "Done";
?>
--EXPECT--
*** Testing mb_substr_count() : usage variations ***

-- ASCII String --
int(1)

-- Multibyte String --
int(1)
Done