1--TEST--
2mysqli_fetch_array() - all datatypes but BIT
3--EXTENSIONS--
4mysqli
5--SKIPIF--
6<?php
7require_once('skipifconnectfailure.inc');
8?>
9--FILE--
10<?php
11    require_once("connect.inc");
12
13    require('table.inc');
14    if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id LIMIT 5")) {
15        printf("[004] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
16    }
17
18    print "[005]\n";
19    var_dump(mysqli_fetch_array($res));
20
21    print "[006]\n";
22    var_dump(mysqli_fetch_array($res, MYSQLI_NUM));
23
24    print "[007]\n";
25    var_dump(mysqli_fetch_array($res, MYSQLI_BOTH));
26
27    print "[008]\n";
28    var_dump(mysqli_fetch_array($res, MYSQLI_ASSOC));
29
30    print "[009]\n";
31    var_dump(mysqli_fetch_array($res));
32
33    mysqli_free_result($res);
34
35    if (!$res = mysqli_query($link, "SELECT 1 AS a, 2 AS a, 3 AS c, 4 AS C, NULL AS d, true AS e")) {
36        printf("[010] Cannot run query, [%d] %s\n", mysqli_errno($link), $mysqli_error($link));
37    }
38    print "[011]\n";
39    var_dump(mysqli_fetch_array($res, MYSQLI_BOTH));
40
41    mysqli_free_result($res);
42    if (!$res = mysqli_query($link, "SELECT 1 AS a, 2 AS b, 3 AS c, 4 AS C")) {
43        printf("[012] Cannot run query, [%d] %s\n",
44            mysqli_errno($link), $mysqli_error($link));
45        exit(1);
46    }
47
48    do {
49        $illegal_mode = mt_rand(-10000, 10000);
50    } while (in_array($illegal_mode, array(MYSQLI_ASSOC, MYSQLI_NUM, MYSQLI_BOTH)));
51    // NOTE: for BC reasons with ext/mysql, ext/mysqli accepts invalid result modes.
52    try {
53        mysqli_fetch_array($res, $illegal_mode);
54    } catch (ValueError $exception) {
55        echo $exception->getMessage() . "\n";
56    }
57
58    try {
59        mysqli_fetch_array($res, $illegal_mode);
60    } catch (ValueError $exception) {
61        echo $exception->getMessage() . "\n";
62    }
63
64    mysqli_free_result($res);
65
66    function func_mysqli_fetch_array($link, $engine, $sql_type, $sql_value, $php_value, $offset, $regexp_comparison = NULL, $binary_type = false) {
67
68        if (!mysqli_query($link, "DROP TABLE IF EXISTS test")) {
69            printf("[%04d] [%d] %s\n", $offset, mysqli_errno($link), mysqli_error($link));
70            return false;
71        }
72
73        if (!mysqli_query($link, $sql = sprintf("CREATE TABLE test(id INT NOT NULL, label %s, PRIMARY KEY(id)) ENGINE = %s", $sql_type, $engine))) {
74                // don't bail, engine might not support the datatype
75                return false;
76        }
77
78        if (is_null($php_value)) {
79            if (!mysqli_query($link, $sql = sprintf("INSERT INTO test(id, label) VALUES (1, NULL)"))) {
80                printf("[%04d] [%d] %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link));
81                return false;
82            }
83        } else {
84            if (is_string($sql_value)) {
85                if (!mysqli_query($link, $sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
86                    printf("[%04ds] [%d] %s - %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link), $sql);
87                    return false;
88                }
89            } else {
90                if (!mysqli_query($link, $sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
91                    printf("[%04di] [%d] %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link));
92                    return false;
93                }
94            }
95        }
96        if (!$res = mysqli_query($link, "SELECT id, label FROM test")) {
97            printf("[%04d] [%d] %s\n", $offset + 2, mysqli_errno($link), mysqli_error($link));
98            return false;
99        }
100
101        if (!$row = mysqli_fetch_array($res, MYSQLI_BOTH)) {
102            printf("[%04d] [%d] %s\n", $offset + 3, mysqli_errno($link), mysqli_error($link));
103            return false;
104        }
105
106        if ($regexp_comparison) {
107            if (!preg_match($regexp_comparison, (string)$row['label']) || !preg_match($regexp_comparison, (string)$row[1])) {
108                printf("[%04d] Expecting %s/%s [reg exp = %s], got %s/%s resp. %s/%s. [%d] %s\n", $offset + 4,
109                    gettype($php_value), $php_value, $regexp_comparison,
110                    gettype($row[1]), $row[1],
111                    gettype($row['label']), $row['label'], mysqli_errno($link), mysqli_error($link));
112                return false;
113            }
114        } else if ((gettype($php_value) == 'unicode') && $binary_type) {
115            // Unicode is on and we are told that the MySQL column type is a binary type.
116            // Don't expect a unicode value from the database, you'll get binary string
117            if (($row['label'] != $php_value) || ($row[1] != $php_value)) {
118                printf("[%04d] Expecting %s/%s, got %s/%s resp. %s/%s. [%d] %s\n", $offset + 5,
119                    gettype($php_value), $php_value,
120                    gettype($row[1]), $row[1],
121                    gettype($row['label']), $row['label'], mysqli_errno($link), mysqli_error($link));
122                return false;
123            }
124            if (gettype($row['label']) == 'unicode') {
125                var_dump(mysqli_fetch_field_direct($res, 1), $row['label']);
126                printf("[%04d] SQL Type: '%s', binary columns are supposed to return binary string and not unicode\n",
127                    $offset + 6, $sql_type);
128                return false;
129            }
130        } else {
131            if (($row['label'] !== $php_value) || ($row[1] != $php_value)) {
132                printf("[%04d] Expecting %s/%s, got %s/%s resp. %s/%s. [%d] %s\n", $offset + 7,
133                    gettype($php_value), $php_value,
134                    gettype($row[1]), $row[1],
135                    gettype($row['label']), $row['label'], mysqli_errno($link), mysqli_error($link));
136                return false;
137            }
138        }
139        return true;
140    }
141
142    function func_mysqli_fetch_array_make_string($len) {
143
144        $ret = '';
145        for ($i = 0; $i < $len; $i++)
146                $ret .= chr(mt_rand(65, 90));
147
148        return $ret;
149    }
150
151    func_mysqli_fetch_array($link, $engine, "TINYINT", -11, "-11", 20);
152    func_mysqli_fetch_array($link, $engine, "TINYINT", NULL, NULL, 30);
153    func_mysqli_fetch_array($link, $engine, "TINYINT UNSIGNED", 1, "1", 40);
154    func_mysqli_fetch_array($link, $engine, "TINYINT UNSIGNED", NULL, NULL, 50);
155
156    func_mysqli_fetch_array($link, $engine, "BOOL", 1, "1", 60);
157    func_mysqli_fetch_array($link, $engine, "BOOL", NULL, NULL, 70);
158    func_mysqli_fetch_array($link, $engine, "BOOLEAN", 0, "0", 80);
159    func_mysqli_fetch_array($link, $engine, "BOOLEAN", NULL, NULL, 90);
160
161    func_mysqli_fetch_array($link, $engine, "SMALLINT", -32768, "-32768", 100);
162    func_mysqli_fetch_array($link, $engine, "SMALLINT", 32767, "32767", 110);
163    func_mysqli_fetch_array($link, $engine, "SMALLINT", NULL, NULL, 120);
164    func_mysqli_fetch_array($link, $engine, "SMALLINT UNSIGNED", 65535, "65535", 130);
165    func_mysqli_fetch_array($link, $engine, "SMALLINT UNSIGNED", NULL, NULL, 140);
166
167    func_mysqli_fetch_array($link, $engine, "MEDIUMINT", -8388608, "-8388608", 150);
168    func_mysqli_fetch_array($link, $engine, "MEDIUMINT", 8388607, "8388607", 160);
169    func_mysqli_fetch_array($link, $engine, "MEDIUMINT", NULL, NULL, 170);
170    func_mysqli_fetch_array($link, $engine, "MEDIUMINT UNSIGNED", 16777215, "16777215", 180);
171    func_mysqli_fetch_array($link, $engine, "MEDIUMINT UNSIGNED", NULL, NULL, 190);
172
173    func_mysqli_fetch_array($link, $engine, "INTEGER", -2147483648, "-2147483648", 200);
174    func_mysqli_fetch_array($link, $engine, "INTEGER", 2147483647, "2147483647", 210);
175    func_mysqli_fetch_array($link, $engine, "INTEGER", NULL, NULL, 220);
176    func_mysqli_fetch_array($link, $engine, "INTEGER UNSIGNED", "4294967295", "4294967295", 230);
177    func_mysqli_fetch_array($link, $engine, "INTEGER UNSIGNED", NULL, NULL, 240);
178
179    func_mysqli_fetch_array($link, $engine, "BIGINT", "-9223372036854775808", "-9223372036854775808", 250);
180    func_mysqli_fetch_array($link, $engine, "BIGINT", NULL, NULL, 260);
181    func_mysqli_fetch_array($link, $engine, "BIGINT UNSIGNED", "18446744073709551615", "18446744073709551615", 260);
182    func_mysqli_fetch_array($link, $engine, "BIGINT UNSIGNED", NULL, NULL, 280);
183
184    func_mysqli_fetch_array($link, $engine, "FLOAT", (string)(-9223372036854775808 - 1.1), "-9.22337e+18", 290, "/-9\.22337e\+?[0]?18/iu");
185    func_mysqli_fetch_array($link, $engine, "FLOAT", NULL, NULL, 300);
186    func_mysqli_fetch_array($link, $engine, "FLOAT UNSIGNED", (string)(18446744073709551615 + 1.1), "1.84467e+?19", 310, "/1\.84467e\+?[0]?19/iu");
187    func_mysqli_fetch_array($link, $engine, "FLOAT UNSIGNED ", NULL, NULL, 320);
188
189    func_mysqli_fetch_array($link, $engine, "DOUBLE(10,2)", "-99999999.99", "-99999999.99", 330);
190    func_mysqli_fetch_array($link, $engine, "DOUBLE(10,2)", NULL, NULL, 340);
191    func_mysqli_fetch_array($link, $engine, "DOUBLE(10,2) UNSIGNED", "99999999.99", "99999999.99", 350);
192    func_mysqli_fetch_array($link, $engine, "DOUBLE(10,2) UNSIGNED", NULL, NULL, 360);
193
194    func_mysqli_fetch_array($link, $engine, "DECIMAL(10,2)", "-99999999.99", "-99999999.99", 370);
195    func_mysqli_fetch_array($link, $engine, "DECIMAL(10,2)", NULL, NULL, 380);
196    func_mysqli_fetch_array($link, $engine, "DECIMAL(10,2)", "99999999.99", "99999999.99", 390);
197    func_mysqli_fetch_array($link, $engine, "DECIMAL(10,2)", NULL, NULL, 400);
198
199        // don't care about date() strict TZ warnings...
200    $date = @date('Y-m-d');
201    func_mysqli_fetch_array($link, $engine, "DATE",$date, $date, 410);
202    func_mysqli_fetch_array($link, $engine, "DATE NOT NULL",$date, $date, 420);
203    func_mysqli_fetch_array($link, $engine, "DATE", NULL, NULL, 430);
204
205    $date = @date('Y-m-d H:i:s');
206    func_mysqli_fetch_array($link, $engine, "DATETIME", $date, $date, 440);
207    func_mysqli_fetch_array($link, $engine, "DATETIME NOT NULL", $date, $date, 450);
208    func_mysqli_fetch_array($link, $engine, "DATETIME", NULL, NULL, 460);
209    func_mysqli_fetch_array($link, $engine, "TIMESTAMP", $date, $date, 470);
210
211    $date = @date('H:i:s');
212    func_mysqli_fetch_array($link, $engine, "TIME", $date, $date, 480);
213    func_mysqli_fetch_array($link, $engine, "TIME NOT NULL", $date, $date, 490);
214    func_mysqli_fetch_array($link, $engine, "TIME", NULL, NULL, 500);
215
216    func_mysqli_fetch_array($link, $engine, "YEAR", @date('Y'), @date('Y'), 510);
217    func_mysqli_fetch_array($link, $engine, "YEAR NOT NULL", @date('Y'), @date('Y'), 520);
218    func_mysqli_fetch_array($link, $engine, "YEAR", NULL, NULL, 530);
219
220    $string255 = func_mysqli_fetch_array_make_string(255);
221    func_mysqli_fetch_array($link, $engine, "CHAR(1)", "a", "a", 540);
222    func_mysqli_fetch_array($link, $engine, "CHAR(255)", $string255,  $string255, 550);
223    func_mysqli_fetch_array($link, $engine, "CHAR(1) NOT NULL", "a", "a", 560);
224    func_mysqli_fetch_array($link, $engine, "CHAR(1)", NULL, NULL, 570);
225
226    $string65k = func_mysqli_fetch_array_make_string(65400);
227    func_mysqli_fetch_array($link, $engine, "VARCHAR(1)", "a", "a", 580);
228    func_mysqli_fetch_array($link, $engine, "VARCHAR(255)", $string255, $string255, 590);
229    func_mysqli_fetch_array($link, $engine, "VARCHAR(65400)", $string65k, $string65k, 600);
230    func_mysqli_fetch_array($link, $engine, "VARCHAR(1) NOT NULL", "a", "a", 610);
231    func_mysqli_fetch_array($link, $engine, "VARCHAR(1)", NULL, NULL, 620);
232
233    func_mysqli_fetch_array($link, $engine, "BINARY(1)", "a", "a", 630, null, true);
234    func_mysqli_fetch_array($link, $engine, "BINARY(2)", chr(0) . "a", chr(0) . "a", 640, null, true);
235    func_mysqli_fetch_array($link, $engine, "BINARY(1) NOT NULL", "b", "b", 650, null, true);
236    func_mysqli_fetch_array($link, $engine, "BINARY(1)", NULL, NULL, 660, null, true);
237
238    func_mysqli_fetch_array($link, $engine, "VARBINARY(1)", "a", "a", 670, null, true);
239    func_mysqli_fetch_array($link, $engine, "VARBINARY(2)", chr(0) . "a", chr(0) . "a", 680, null, true);
240    func_mysqli_fetch_array($link, $engine, "VARBINARY(1) NOT NULL", "b", "b", 690, null, true);
241    func_mysqli_fetch_array($link, $engine, "VARBINARY(1)", NULL, NULL, 700, null, true);
242
243    func_mysqli_fetch_array($link, $engine, "TINYBLOB", "a", "a", 710, null, true);
244    func_mysqli_fetch_array($link, $engine, "TINYBLOB", chr(0) . "a", chr(0) . "a", 720, null, true);
245    func_mysqli_fetch_array($link, $engine, "TINYBLOB NOT NULL", "b", "b", 730, null, true);
246    func_mysqli_fetch_array($link, $engine, "TINYBLOB", NULL, NULL, 740, null, true);
247
248    func_mysqli_fetch_array($link, $engine, "TINYTEXT", "a", "a", 750);
249    func_mysqli_fetch_array($link, $engine, "TINYTEXT NOT NULL", "a", "a", 760);
250    func_mysqli_fetch_array($link, $engine, "TINYTEXT", NULL, NULL, 770);
251
252    func_mysqli_fetch_array($link, $engine, "BLOB", "a", "a", 780, null, true);
253    func_mysqli_fetch_array($link, $engine, "BLOB", chr(0) . "a", chr(0) . "a", 780, null, true);
254    func_mysqli_fetch_array($link, $engine, "BLOB", NULL, NULL, 790, null, true);
255
256    func_mysqli_fetch_array($link, $engine, "TEXT", "a", "a", 800);
257    func_mysqli_fetch_array($link, $engine, "TEXT", chr(0) . "a", chr(0) . "a", 810);
258    func_mysqli_fetch_array($link, $engine, "TEXT", NULL, NULL, 820);
259
260    func_mysqli_fetch_array($link, $engine, "MEDIUMBLOB", "a", "a", 830, null, true);
261    func_mysqli_fetch_array($link, $engine, "MEDIUMBLOB", chr(0) . "a", chr(0) . "a", 840, null, true);
262    func_mysqli_fetch_array($link, $engine, "MEDIUMBLOB", NULL, NULL, 850, null, true);
263
264    func_mysqli_fetch_array($link, $engine, "MEDIUMTEXT", "a", "a", 860);
265    func_mysqli_fetch_array($link, $engine, "MEDIUMTEXT", chr(0) . "a", chr(0) . "a", 870);
266    func_mysqli_fetch_array($link, $engine, "MEDIUMTEXT", NULL, NULL, 880);
267
268    func_mysqli_fetch_array($link, $engine, "LONGBLOB", "a", "a", 890, null, true);
269    func_mysqli_fetch_array($link, $engine, "LONGTEXT", chr(0) . "a", chr(0) . "a", 900);
270    func_mysqli_fetch_array($link, $engine, "LONGBLOB", NULL, NULL, 910, null, true);
271
272    func_mysqli_fetch_array($link, $engine, "ENUM('a', 'b')", "a", "a", 920);
273    func_mysqli_fetch_array($link, $engine, "ENUM('a', 'b')", NULL, NULL, 930);
274
275    func_mysqli_fetch_array($link, $engine, "SET('a', 'b')", "a", "a", 940);
276    func_mysqli_fetch_array($link, $engine, "SET('a', 'b')", NULL, NULL, 950);
277
278    mysqli_close($link);
279
280    try {
281        mysqli_fetch_array($res, MYSQLI_ASSOC);
282    } catch (Error $exception) {
283        echo $exception->getMessage() . "\n";
284    }
285
286    print "done!";
287?>
288--EXPECT--
289[005]
290array(4) {
291  [0]=>
292  string(1) "1"
293  ["id"]=>
294  string(1) "1"
295  [1]=>
296  string(1) "a"
297  ["label"]=>
298  string(1) "a"
299}
300[006]
301array(2) {
302  [0]=>
303  string(1) "2"
304  [1]=>
305  string(1) "b"
306}
307[007]
308array(4) {
309  [0]=>
310  string(1) "3"
311  ["id"]=>
312  string(1) "3"
313  [1]=>
314  string(1) "c"
315  ["label"]=>
316  string(1) "c"
317}
318[008]
319array(2) {
320  ["id"]=>
321  string(1) "4"
322  ["label"]=>
323  string(1) "d"
324}
325[009]
326array(4) {
327  [0]=>
328  string(1) "5"
329  ["id"]=>
330  string(1) "5"
331  [1]=>
332  string(1) "e"
333  ["label"]=>
334  string(1) "e"
335}
336[011]
337array(11) {
338  [0]=>
339  string(1) "1"
340  ["a"]=>
341  string(1) "2"
342  [1]=>
343  string(1) "2"
344  [2]=>
345  string(1) "3"
346  ["c"]=>
347  string(1) "3"
348  [3]=>
349  string(1) "4"
350  ["C"]=>
351  string(1) "4"
352  [4]=>
353  NULL
354  ["d"]=>
355  NULL
356  [5]=>
357  string(1) "1"
358  ["e"]=>
359  string(1) "1"
360}
361mysqli_fetch_array(): Argument #2 ($mode) must be one of MYSQLI_NUM, MYSQLI_ASSOC, or MYSQLI_BOTH
362mysqli_fetch_array(): Argument #2 ($mode) must be one of MYSQLI_NUM, MYSQLI_ASSOC, or MYSQLI_BOTH
363mysqli_result object is already closed
364done!
365