1--TEST--
2Test mb_strpos() function : usage variations - pass different data types as $encoding arg
3--SKIPIF--
4<?php
5extension_loaded('mbstring') or die('skip');
6function_exists('mb_strpos') or die("skip mb_strpos() is not available in this build");
7?>
8--FILE--
9<?php
10/* Prototype  : int mb_strpos(string $haystack, string $needle [, int $offset [, string $encoding]])
11 * Description: Find position of first occurrence of a string within another
12 * Source code: ext/mbstring/mbstring.c
13 */
14
15/*
16 * Pass mb_strpos different data types as $encoding arg to test behaviour
17 * Where possible 'UTF-8' has been entered as a string value
18 */
19
20echo "*** Testing mb_strpos() : usage variations ***\n";
21
22// Initialise function arguments not being substituted
23$haystack = 'string_val';
24$needle = 'val';
25$offset = 0;
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 "UTF-8";
36  }
37}
38
39// heredoc string
40$heredoc = <<<EOT
41UTF-8
42EOT;
43
44// get a resource variable
45$fp = fopen(__FILE__, "r");
46
47// unexpected values to be passed to $input 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*/ "UTF-8",
79       'UTF-8',
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_strpos()
96$iterator = 1;
97foreach($inputs as $input) {
98  echo "\n-- Iteration $iterator --\n";
99  var_dump( mb_strpos($haystack, $needle, $offset, $input));
100  $iterator++;
101};
102
103fclose($fp);
104
105echo "Done";
106?>
107--EXPECTF--
108*** Testing mb_strpos() : usage variations ***
109
110-- Iteration 1 --
111
112Warning: mb_strpos(): Unknown encoding "0" in %s on line %d
113bool(false)
114
115-- Iteration 2 --
116
117Warning: mb_strpos(): Unknown encoding "1" in %s on line %d
118bool(false)
119
120-- Iteration 3 --
121
122Warning: mb_strpos(): Unknown encoding "12345" in %s on line %d
123bool(false)
124
125-- Iteration 4 --
126
127Warning: mb_strpos(): Unknown encoding "-2345" in %s on line %d
128bool(false)
129
130-- Iteration 5 --
131
132Warning: mb_strpos(): Unknown encoding "10.5" in %s on line %d
133bool(false)
134
135-- Iteration 6 --
136
137Warning: mb_strpos(): Unknown encoding "-10.5" in %s on line %d
138bool(false)
139
140-- Iteration 7 --
141
142Warning: mb_strpos(): Unknown encoding "123456789000" in %s on line %d
143bool(false)
144
145-- Iteration 8 --
146
147Warning: mb_strpos(): Unknown encoding "1.23456789E-9" in %s on line %d
148bool(false)
149
150-- Iteration 9 --
151
152Warning: mb_strpos(): Unknown encoding "0.5" in %s on line %d
153bool(false)
154
155-- Iteration 10 --
156
157Warning: mb_strpos(): Unknown encoding "" in %s on line %d
158bool(false)
159
160-- Iteration 11 --
161
162Warning: mb_strpos(): Unknown encoding "" in %s on line %d
163bool(false)
164
165-- Iteration 12 --
166
167Warning: mb_strpos(): Unknown encoding "1" in %s on line %d
168bool(false)
169
170-- Iteration 13 --
171
172Warning: mb_strpos(): Unknown encoding "" in %s on line %d
173bool(false)
174
175-- Iteration 14 --
176
177Warning: mb_strpos(): Unknown encoding "1" in %s on line %d
178bool(false)
179
180-- Iteration 15 --
181
182Warning: mb_strpos(): Unknown encoding "" in %s on line %d
183bool(false)
184
185-- Iteration 16 --
186
187Warning: mb_strpos(): Unknown encoding "" in %s on line %d
188bool(false)
189
190-- Iteration 17 --
191
192Warning: mb_strpos(): Unknown encoding "" in %s on line %d
193bool(false)
194
195-- Iteration 18 --
196int(7)
197
198-- Iteration 19 --
199int(7)
200
201-- Iteration 20 --
202int(7)
203
204-- Iteration 21 --
205int(7)
206
207-- Iteration 22 --
208
209Warning: mb_strpos(): Unknown encoding "" in %s on line %d
210bool(false)
211
212-- Iteration 23 --
213
214Warning: mb_strpos(): Unknown encoding "" in %s on line %d
215bool(false)
216
217-- Iteration 24 --
218
219Warning: mb_strpos() expects parameter 4 to be string, resource given in %s on line %d
220NULL
221Done
222