blob: b3299dc82413ccf5b2edf5d0c1e22fc9110ef128 (
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
|
--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
/*
* 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
|