1--TEST--
2Test ereg_replace() function : usage variations  - unexpected type arg 2
3--FILE--
4<?php
5/* Prototype  : proto string ereg_replace(string pattern, string replacement, string string)
6 * Description: Replace regular expression
7 * Source code: ext/standard/reg.c
8 * Alias to functions:
9 */
10
11function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
12	echo "Error: $err_no - $err_msg, $filename($linenum)\n";
13}
14set_error_handler('test_error_handler');
15
16echo "*** Testing ereg_replace() : usage variations ***\n";
17
18// Initialise function arguments not being substituted (if any)
19$pattern = b'ell';
20$string = 'hello!';
21
22//get an unset variable
23$unset_var = 10;
24unset ($unset_var);
25
26//array of values to iterate over
27$values = array(
28
29      // int data
30      0,
31      1,
32      12345,
33      -2345,
34
35      // float data
36      10.5,
37      -10.5,
38      10.1234567e10,
39      10.7654321E-10,
40      .5,
41
42      // array data
43      array(),
44      array(0),
45      array(1),
46      array(1, 2),
47      array('color' => 'red', 'item' => 'pen'),
48
49      // null data
50      NULL,
51      null,
52
53      // boolean data
54      true,
55      false,
56      TRUE,
57      FALSE,
58
59      // empty data
60      "",
61      '',
62
63      // object data
64      new stdclass(),
65
66      // undefined data
67      $undefined_var,
68
69      // unset data
70      $unset_var,
71);
72
73// loop through each element of the array for replacement
74
75foreach($values as $value) {
76      echo "\nArg value $value \n";
77      var_dump(urlencode(ereg_replace($pattern, $value, $string)));
78};
79
80echo "Done";
81?>
82--EXPECTF--
83*** Testing ereg_replace() : usage variations ***
84Error: 8 - Undefined variable: undefined_var, %s(64)
85Error: 8 - Undefined variable: unset_var, %s(67)
86
87Arg value 0
88Error: 8192 - Function ereg_replace() is deprecated, %s(74)
89string(5) "ho%21"
90
91Arg value 1
92Error: 8192 - Function ereg_replace() is deprecated, %s(74)
93string(8) "h%01o%21"
94
95Arg value 12345
96Error: 8192 - Function ereg_replace() is deprecated, %s(74)
97string(6) "h9o%21"
98
99Arg value -2345
100Error: 8192 - Function ereg_replace() is deprecated, %s(74)
101string(8) "h%D7o%21"
102
103Arg value 10.5
104Error: 8192 - Function ereg_replace() is deprecated, %s(74)
105string(8) "h%0Ao%21"
106
107Arg value -10.5
108Error: 8192 - Function ereg_replace() is deprecated, %s(74)
109string(8) "h%F6o%21"
110
111Arg value 101234567000
112Error: 8192 - Function ereg_replace() is deprecated, %s(74)
113string(%d) "h%so%21"
114
115Arg value 1.07654321E-9
116Error: 8192 - Function ereg_replace() is deprecated, %s(74)
117string(5) "ho%21"
118
119Arg value 0.5
120Error: 8192 - Function ereg_replace() is deprecated, %s(74)
121string(5) "ho%21"
122Error: 8 - Array to string conversion, %sereg_replace_variation_002.php(%d)
123
124Arg value Array
125Error: 8192 - Function ereg_replace() is deprecated, %s(74)
126string(5) "ho%21"
127Error: 8 - Array to string conversion, %sereg_replace_variation_002.php(%d)
128
129Arg value Array
130Error: 8192 - Function ereg_replace() is deprecated, %s(74)
131string(8) "h%01o%21"
132Error: 8 - Array to string conversion, %sereg_replace_variation_002.php(%d)
133
134Arg value Array
135Error: 8192 - Function ereg_replace() is deprecated, %s(74)
136string(8) "h%01o%21"
137Error: 8 - Array to string conversion, %sereg_replace_variation_002.php(%d)
138
139Arg value Array
140Error: 8192 - Function ereg_replace() is deprecated, %s(74)
141string(8) "h%01o%21"
142Error: 8 - Array to string conversion, %sereg_replace_variation_002.php(%d)
143
144Arg value Array
145Error: 8192 - Function ereg_replace() is deprecated, %s(74)
146string(8) "h%01o%21"
147
148Arg value
149Error: 8192 - Function ereg_replace() is deprecated, %s(74)
150string(5) "ho%21"
151
152Arg value
153Error: 8192 - Function ereg_replace() is deprecated, %s(74)
154string(5) "ho%21"
155
156Arg value 1
157Error: 8192 - Function ereg_replace() is deprecated, %s(74)
158string(8) "h%01o%21"
159
160Arg value
161Error: 8192 - Function ereg_replace() is deprecated, %s(74)
162string(5) "ho%21"
163
164Arg value 1
165Error: 8192 - Function ereg_replace() is deprecated, %s(74)
166string(8) "h%01o%21"
167
168Arg value
169Error: 8192 - Function ereg_replace() is deprecated, %s(74)
170string(5) "ho%21"
171
172Arg value
173Error: 8192 - Function ereg_replace() is deprecated, %s(74)
174string(5) "ho%21"
175
176Arg value
177Error: 8192 - Function ereg_replace() is deprecated, %s(74)
178string(5) "ho%21"
179Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
180
181Arg value
182Error: 8192 - Function ereg_replace() is deprecated, %s(74)
183Error: 8 - Object of class stdClass could not be converted to int, %s(74)
184string(8) "h%01o%21"
185
186Arg value
187Error: 8192 - Function ereg_replace() is deprecated, %s(74)
188string(5) "ho%21"
189
190Arg value
191Error: 8192 - Function ereg_replace() is deprecated, %s(74)
192string(5) "ho%21"
193Done