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