mysqli_fetch_array.phpt 15 KB

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