blob: 9cf7cacdb9e359f379dfa66109e3400034923b81 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
--TEST--
Test mb_strpos() function : mb_strpos bounds check is byte count rather than a character count
--SKIPIF--
<?php
extension_loaded('mbstring') or die('skip');
function_exists('mb_strpos') or die("skip mb_strpos() is not available in this build");
?>
--FILE--
<?php
/* Prototype : int mb_strpos(string $haystack, string $needle [, int $offset [, string $encoding]])
* Description: Find position of first occurrence of a string within another
* Source code: ext/mbstring/mbstring.c
*/
/*
* mb_strpos bounds check is byte count rather than a character count:
* The multibyte string should be returning the same results as the ASCII string.
* Multibyte string was not returning error message until offset was passed the
* byte count of the string. Should return error message when passed character count.
*/
$offsets = array(20, 21, 22, 53, 54);
$string_mb = base64_decode('5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCMDEyMzTvvJXvvJbvvJfvvJjvvJnjgII=');
$needle = base64_decode('44CC');
foreach($offsets as $i) {
echo "\n-- Offset is $i --\n";
echo "--Multibyte String:--\n";
var_dump( mb_strpos($string_mb, $needle, $i, 'UTF-8') );
echo"--ASCII String:--\n";
var_dump(mb_strpos('This is na English ta', 'a', $i));
}
?>
--EXPECTF--
-- Offset is 20 --
--Multibyte String:--
int(20)
--ASCII String:--
int(20)
-- Offset is 21 --
--Multibyte String:--
bool(false)
--ASCII String:--
bool(false)
-- Offset is 22 --
--Multibyte String:--
Warning: mb_strpos(): Offset not contained in string in %s on line %d
bool(false)
--ASCII String:--
Warning: mb_strpos(): Offset not contained in string in %s on line %d
bool(false)
-- Offset is 53 --
--Multibyte String:--
Warning: mb_strpos(): Offset not contained in string in %s on line %d
bool(false)
--ASCII String:--
Warning: mb_strpos(): Offset not contained in string in %s on line %d
bool(false)
-- Offset is 54 --
--Multibyte String:--
Warning: mb_strpos(): Offset not contained in string in %s on line %d
bool(false)
--ASCII String:--
Warning: mb_strpos(): Offset not contained in string in %s on line %d
bool(false)
|