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"
122
123Arg value Array
124Error: 8192 - Function ereg_replace() is deprecated, %s(74)
125string(5) "ho%21"
126
127Arg value Array
128Error: 8192 - Function ereg_replace() is deprecated, %s(74)
129string(8) "h%01o%21"
130
131Arg value Array
132Error: 8192 - Function ereg_replace() is deprecated, %s(74)
133string(8) "h%01o%21"
134
135Arg value Array
136Error: 8192 - Function ereg_replace() is deprecated, %s(74)
137string(8) "h%01o%21"
138
139Arg value Array
140Error: 8192 - Function ereg_replace() is deprecated, %s(74)
141string(8) "h%01o%21"
142
143Arg value
144Error: 8192 - Function ereg_replace() is deprecated, %s(74)
145string(5) "ho%21"
146
147Arg value
148Error: 8192 - Function ereg_replace() is deprecated, %s(74)
149string(5) "ho%21"
150
151Arg value 1
152Error: 8192 - Function ereg_replace() is deprecated, %s(74)
153string(8) "h%01o%21"
154
155Arg value
156Error: 8192 - Function ereg_replace() is deprecated, %s(74)
157string(5) "ho%21"
158
159Arg value 1
160Error: 8192 - Function ereg_replace() is deprecated, %s(74)
161string(8) "h%01o%21"
162
163Arg value
164Error: 8192 - Function ereg_replace() is deprecated, %s(74)
165string(5) "ho%21"
166
167Arg value
168Error: 8192 - Function ereg_replace() is deprecated, %s(74)
169string(5) "ho%21"
170
171Arg value
172Error: 8192 - Function ereg_replace() is deprecated, %s(74)
173string(5) "ho%21"
174Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
175
176Arg value
177Error: 8192 - Function ereg_replace() is deprecated, %s(74)
178Error: 8 - Object of class stdClass could not be converted to int, %s(74)
179string(8) "h%01o%21"
180
181Arg value
182Error: 8192 - Function ereg_replace() is deprecated, %s(74)
183string(5) "ho%21"
184
185Arg value
186Error: 8192 - Function ereg_replace() is deprecated, %s(74)
187string(5) "ho%21"
188Done