1--TEST--
2Test mb_stripos() function : usage variations - pass different data types as $offset arg
3--SKIPIF--
4<?php
5extension_loaded('mbstring') or die('skip');
6function_exists('mb_stripos') or die("skip mb_stripos() is not available in this build");
7?>
8--FILE--
9<?php
10/* Prototype  : int mb_stripos(string haystack, string needle [, int offset [, string encoding]])
11 * Description: Finds position of first occurrence of a string within another, case insensitive
12 * Source code: ext/mbstring/mbstring.c
13 * Alias to functions:
14 */
15
16/*
17 * Pass mb_stripos different data types as $offset arg to test behaviour
18 */
19
20echo "*** Testing mb_stripos() : usage variations ***\n";
21
22// Initialise function arguments not being substituted
23$needle = b'A';
24$haystack = b'string_val';
25$encoding = 'utf-8';
26
27//get an unset variable
28$unset_var = 10;
29unset ($unset_var);
30
31// get a class
32class classA
33{
34  public function __toString() {
35    return "Class A object";
36  }
37}
38
39// heredoc string
40$heredoc = <<<EOT
41hello world
42EOT;
43
44// get a resource variable
45$fp = fopen(__FILE__, "r");
46
47// unexpected values to be passed to $offest argument
48$inputs = array(
49
50       // int data
51/*1*/  0,
52       1,
53       12345,
54       -2345,
55
56       // float data
57/*5*/  10.5,
58       -10.5,
59       12.3456789000e10,
60       12.3456789000E-10,
61       .5,
62
63       // null data
64/*10*/ NULL,
65       null,
66
67       // boolean data
68/*12*/ true,
69       false,
70       TRUE,
71       FALSE,
72
73       // empty data
74/*16*/ "",
75       '',
76
77       // string data
78/*18*/ "string",
79       'string',
80       $heredoc,
81
82       // object data
83/*21*/ new classA(),
84
85       // undefined data
86/*22*/ @$undefined_var,
87
88       // unset data
89/*23*/ @$unset_var,
90
91       // resource variable
92/*24*/ $fp
93);
94
95// loop through each element of $inputs to check the behavior of mb_stripos()
96$iterator = 1;
97foreach($inputs as $input) {
98  echo "\n-- Iteration $iterator --\n";
99  var_dump( mb_stripos($haystack, $needle, $input, $encoding));
100  $iterator++;
101};
102
103fclose($fp);
104
105echo "Done";
106?>
107--EXPECTF--
108*** Testing mb_stripos() : usage variations ***
109
110-- Iteration 1 --
111int(8)
112
113-- Iteration 2 --
114int(8)
115
116-- Iteration 3 --
117
118Warning: mb_stripos(): Offset not contained in string in %s on line %d
119bool(false)
120
121-- Iteration 4 --
122
123Warning: mb_stripos(): Offset not contained in string in %s on line %d
124bool(false)
125
126-- Iteration 5 --
127bool(false)
128
129-- Iteration 6 --
130
131Warning: mb_stripos(): Offset not contained in string in %s on line %d
132bool(false)
133
134-- Iteration 7 --
135
136Warning: mb_stripos(): Offset not contained in string in %s on line %d
137bool(false)
138
139-- Iteration 8 --
140int(8)
141
142-- Iteration 9 --
143int(8)
144
145-- Iteration 10 --
146int(8)
147
148-- Iteration 11 --
149int(8)
150
151-- Iteration 12 --
152int(8)
153
154-- Iteration 13 --
155int(8)
156
157-- Iteration 14 --
158int(8)
159
160-- Iteration 15 --
161int(8)
162
163-- Iteration 16 --
164
165Warning: mb_stripos() expects parameter 3 to be long, string given in %s on line %d
166bool(false)
167
168-- Iteration 17 --
169
170Warning: mb_stripos() expects parameter 3 to be long, string given in %s on line %d
171bool(false)
172
173-- Iteration 18 --
174
175Warning: mb_stripos() expects parameter 3 to be long, string given in %s on line %d
176bool(false)
177
178-- Iteration 19 --
179
180Warning: mb_stripos() expects parameter 3 to be long, string given in %s on line %d
181bool(false)
182
183-- Iteration 20 --
184
185Warning: mb_stripos() expects parameter 3 to be long, string given in %s on line %d
186bool(false)
187
188-- Iteration 21 --
189
190Warning: mb_stripos() expects parameter 3 to be long, object given in %s on line %d
191bool(false)
192
193-- Iteration 22 --
194int(8)
195
196-- Iteration 23 --
197int(8)
198
199-- Iteration 24 --
200
201Warning: mb_stripos() expects parameter 3 to be long, resource given in %s on line %d
202bool(false)
203Done
204