mysqli_stmt_bind_param.phpt 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. --TEST--
  2. mysqli_stmt_bind_param()
  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. /*
  12. The way we test the INSERT and data types overlaps with
  13. the mysqli_stmt_bind_result test in large parts. There is only
  14. one difference. This test uses mysqli_query()/mysqli_fetch_assoc() to
  15. fetch the inserted values. This way we test
  16. mysqli_query()/mysqli_fetch_assoc() for all possible data types
  17. in this file and we test mysqli_stmt_bind_result() in the other
  18. test -- therefore the "duplicate" makes some sense to me.
  19. */
  20. require_once("connect.inc");
  21. $tmp = NULL;
  22. $link = NULL;
  23. if (!is_null($tmp = @mysqli_stmt_bind_param()))
  24. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  25. if (!is_null($tmp = @mysqli_stmt_bind_param($link)))
  26. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  27. if (!is_null($tmp = @mysqli_stmt_bind_param($link, $link)))
  28. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  29. require('table.inc');
  30. $stmt = mysqli_stmt_init($link);
  31. if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (?, ?)"))
  32. printf("[003] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  33. $id = null;
  34. $label = null;
  35. /*
  36. libmysql gives a less descriptive error message but mysqlnd,
  37. we did not unify the error messages but ignore this slight difference silently
  38. */
  39. if (!false === ($tmp = @mysqli_stmt_bind_param($stmt, " ", $tmp)))
  40. printf("[003d] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  41. if (!false === ($tmp = @mysqli_stmt_bind_param($stmt, "", $id, $label)))
  42. printf("[003a] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  43. /* TODO: somehwhat undocumented syntax! */
  44. $param = array($id);
  45. if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "is", $param)))
  46. printf("[003b] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  47. $param = array($id, $label, $id);
  48. if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "is", $param)))
  49. printf("[003c] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  50. if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "a", $id)))
  51. printf("[004] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  52. if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "a", $id, $label)))
  53. printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  54. if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "aa", $id, $label)))
  55. printf("[006] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  56. if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "ia", $id, $label)))
  57. printf("[007] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  58. if (!true === ($tmp = mysqli_stmt_bind_param($stmt, "is", $id, $label)))
  59. printf("[008] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  60. if (function_exists("memory_get_usage")) {
  61. $mem = memory_get_usage();
  62. for ($i = 0; $i < 20000; $i++) {
  63. if (!true === ($tmp = mysqli_stmt_bind_param($stmt, "is", $id, $label)))
  64. printf("[008][$i] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  65. }
  66. if (($tmp = (memory_get_usage() - $mem)) > 600)
  67. printf("[009] Function seems to be leaking, because it used %d bytes. During tests it used only 92 bytes.", $tmp);
  68. }
  69. $id = 100;
  70. $label = "z";
  71. if (!mysqli_stmt_execute($stmt))
  72. printf("[010] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  73. mysqli_stmt_close($stmt);
  74. if (!($res = mysqli_query($link, "SELECT id, label FROM test WHERE id = " . $id)))
  75. printf("[011] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  76. $row = mysqli_fetch_assoc($res);
  77. if (($row['id'] != $id) || ($row['label'] != $label))
  78. printf("[012] Expecting '%s'/%s', got '%s'/%s'!\n", $id, $label, $row['id'], $row['label']);
  79. mysqli_free_result($res);
  80. function func_mysqli_stmt_bind_datatype($link, $engine, $bind_type, $sql_type, $bind_value, $offset, $alternative = null) {
  81. if (!mysqli_query($link, "DROP TABLE IF EXISTS test")) {
  82. printf("[%03d] [%d] %s\n", $offset, mysqli_errno($link), mysqli_error($link));
  83. return false;
  84. }
  85. if (!mysqli_query($link, sprintf("CREATE TABLE test(id INT NOT NULL, label %s, PRIMARY KEY(id)) ENGINE = %s", $sql_type, $engine))) {
  86. // don't bail - it might be that the server does not support the data type
  87. return false;
  88. }
  89. if (!$stmt = mysqli_stmt_init($link)) {
  90. printf("[%03d] [%d] %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link));
  91. return false;
  92. }
  93. if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUE (?, ?)")) {
  94. printf("[%03d] [%d] %s\n", $offset + 2, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  95. return false;
  96. }
  97. $id = 1;
  98. if (!mysqli_stmt_bind_param($stmt, "i" . $bind_type, $id, $bind_value)) {
  99. printf("[%03d] [%d] %s\n", $offset + 3, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  100. return false;
  101. }
  102. if (!mysqli_stmt_execute($stmt)) {
  103. printf("[%03d] [%d] %s\n", $offset + 4, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  104. return false;
  105. }
  106. mysqli_stmt_close($stmt);
  107. if (!$res = mysqli_query($link, "SELECT id, label FROM test")) {
  108. printf("[%03d] [%d] %s\n", $offset + 5, mysqli_errno($link), mysqli_error($link));
  109. return false;
  110. }
  111. if (!$row = mysqli_fetch_assoc($res)) {
  112. printf("[%03d] [%d] %s\n", $offset + 5, mysqli_errno($link), mysqli_error($link));
  113. return false;
  114. }
  115. if ($alternative) {
  116. if (($row['id'] != $id) || (($row['label'] != $bind_value) && ($row['label'] != $alternative))) {
  117. printf("[%03d] Testing '%s', '%s': expecting '%s'/'%s' (%s), got '%s'/'%s'\n",
  118. $offset + 6, $bind_type, $sql_type,
  119. $id, $bind_value, gettype($bind_value), $row['id'], $row['label']);
  120. return false;
  121. }
  122. } else {
  123. if (($row['id'] != $id) || ($row['label'] != $bind_value)) {
  124. printf("[%03d] Testing '%s', '%s': expecting '%s'/'%s', got '%s'/'%s'\n",
  125. $offset + 6, $bind_type, $sql_type,
  126. $id, $bind_value, $row['id'], $row['label']);
  127. return false;
  128. }
  129. }
  130. mysqli_free_result($res);
  131. return true;
  132. }
  133. function func_mysqli_stmt_bind_make_string($len) {
  134. $ret = '';
  135. for ($i = 0; $i < $len; $i++)
  136. $ret .= chr(mt_rand(65, 90));
  137. return $ret;
  138. }
  139. func_mysqli_stmt_bind_datatype($link, $engine, "i", "TINYINT", -11, 20);
  140. func_mysqli_stmt_bind_datatype($link, $engine, "i", "TINYINT", NULL, 30);
  141. func_mysqli_stmt_bind_datatype($link, $engine, "i", "TINYINT UNSIGNED", 1, 40);
  142. func_mysqli_stmt_bind_datatype($link, $engine, "i", "TINYINT UNSIGNED", NULL, 50);
  143. func_mysqli_stmt_bind_datatype($link, $engine, "i", "BOOL", 1, 60);
  144. func_mysqli_stmt_bind_datatype($link, $engine, "i", "BOOL", NULL, 70);
  145. func_mysqli_stmt_bind_datatype($link, $engine, "i", "BOOLEAN", 0, 80);
  146. func_mysqli_stmt_bind_datatype($link, $engine, "i", "BOOLEAN", NULL, 90);
  147. func_mysqli_stmt_bind_datatype($link, $engine, "i", "SMALLINT", -32768, 100);
  148. func_mysqli_stmt_bind_datatype($link, $engine, "i", "SMALLINT", 32767, 110);
  149. func_mysqli_stmt_bind_datatype($link, $engine, "i", "SMALLINT", NULL, 120);
  150. func_mysqli_stmt_bind_datatype($link, $engine, "i", "SMALLINT UNSIGNED", 65535, 130);
  151. func_mysqli_stmt_bind_datatype($link, $engine, "i", "SMALLINT UNSIGNED", NULL, 140);
  152. func_mysqli_stmt_bind_datatype($link, $engine, "i", "MEDIUMINT", -8388608, 150);
  153. func_mysqli_stmt_bind_datatype($link, $engine, "i", "MEDIUMINT", 8388607, 160);
  154. func_mysqli_stmt_bind_datatype($link, $engine, "i", "MEDIUMINT", NULL, 170);
  155. func_mysqli_stmt_bind_datatype($link, $engine, "i", "MEDIUMINT UNSIGNED", 16777215, 180);
  156. func_mysqli_stmt_bind_datatype($link, $engine, "i", "MEDIUMINT UNSIGNED", NULL, 190);
  157. func_mysqli_stmt_bind_datatype($link, $engine, "i", "INTEGER", -2147483648, 200);
  158. func_mysqli_stmt_bind_datatype($link, $engine, "i", "INTEGER", 2147483647, 210);
  159. func_mysqli_stmt_bind_datatype($link, $engine, "i", "INTEGER", NULL, 220);
  160. func_mysqli_stmt_bind_datatype($link, $engine, "i", "INTEGER UNSIGNED", (defined("PHP_INT_MAX")) ? min(4294967295, PHP_INT_MAX) : 1, 230);
  161. func_mysqli_stmt_bind_datatype($link, $engine, "d", "INTEGER UNSIGNED", 4294967295, 240);
  162. func_mysqli_stmt_bind_datatype($link, $engine, "i", "INTEGER UNSIGNED", NULL, 250);
  163. func_mysqli_stmt_bind_datatype($link, $engine, "i", "BIGINT", -1 * PHP_INT_MAX + 1, 260);
  164. func_mysqli_stmt_bind_datatype($link, $engine, "i", "BIGINT", NULL, 270);
  165. func_mysqli_stmt_bind_datatype($link, $engine, "i", "BIGINT", PHP_INT_MAX, 280);
  166. func_mysqli_stmt_bind_datatype($link, $engine, "i", "BIGINT UNSIGNED", NULL, 290);
  167. func_mysqli_stmt_bind_datatype($link, $engine, "s", "BIGINT", "-9223372036854775808", 900);
  168. // ?? func_mysqli_stmt_bind_datatype($link, $engine, "d", "BIGINT", -9223372036854775808, 910);
  169. func_mysqli_stmt_bind_datatype($link, $engine, "s", "BIGINT UNSIGNED", "18446744073709551615", 920);
  170. /*
  171. ??
  172. func_mysqli_stmt_bind_datatype($link, $engine, "d", "FLOAT", -9223372036854775808 - 1.1, 300);
  173. func_mysqli_stmt_bind_datatype($link, $engine, "d", "FLOAT UNSIGNED", 18446744073709551615 + 1.1, 320);
  174. */
  175. func_mysqli_stmt_bind_datatype($link, $engine, "d", "FLOAT", NULL, 310);
  176. func_mysqli_stmt_bind_datatype($link, $engine, "d", "FLOAT UNSIGNED ", NULL, 330);
  177. if (2147483647 == PHP_INT_MAX) {
  178. func_mysqli_stmt_bind_datatype($link, $engine, "d", "FLOAT UNSIGNED", PHP_INT_MAX, 930, '2.14748e+09');
  179. func_mysqli_stmt_bind_datatype($link, $engine, "d", "FLOAT", -1 * PHP_INT_MAX + 1, 940, '-2.14748e+09');
  180. }
  181. func_mysqli_stmt_bind_datatype($link, $engine, "s", "FLOAT", "-9223372036854775808", 300, '-9.22337e+18');
  182. func_mysqli_stmt_bind_datatype($link, $engine, "s", "FLOAT UNSIGNED", "18446744073709551615", 320, '1.84467e+19');
  183. func_mysqli_stmt_bind_datatype($link, $engine, "d", "FLOAT", -10.01, 950);
  184. func_mysqli_stmt_bind_datatype($link, $engine, "d", "FLOAT UNSIGNED", 10.01, 960);
  185. func_mysqli_stmt_bind_datatype($link, $engine, "d", "DOUBLE(10,2)", NULL, 350);
  186. func_mysqli_stmt_bind_datatype($link, $engine, "d", "DOUBLE(10,2) UNSIGNED", NULL, 370);
  187. func_mysqli_stmt_bind_datatype($link, $engine, "d", "DOUBLE(10,2)", -99999999.99, 340);
  188. func_mysqli_stmt_bind_datatype($link, $engine, "d", "DOUBLE(10,2) UNSIGNED", 99999999.99, 360);
  189. /*
  190. func_mysqli_stmt_bind_datatype($link, $engine, "d", "DOUBLE(10,2)", -99999999.99, 340);
  191. func_mysqli_stmt_bind_datatype($link, $engine, "d", "DOUBLE(10,2) UNSIGNED", 99999999.99, 360);
  192. */
  193. func_mysqli_stmt_bind_datatype($link, $engine, "d", "DECIMAL(10,2)", -99999999.99, 380);
  194. func_mysqli_stmt_bind_datatype($link, $engine, "d", "DECIMAL(10,2)", NULL, 390);
  195. func_mysqli_stmt_bind_datatype($link, $engine, "d", "DECIMAL(10,2)", 99999999.99, 400);
  196. func_mysqli_stmt_bind_datatype($link, $engine, "d", "DECIMAL(10,2)", NULL, 410);
  197. // don't care about date() strict TZ warnings...
  198. func_mysqli_stmt_bind_datatype($link, $engine, "s", "DATE", @date('Y-m-d'), 420);
  199. func_mysqli_stmt_bind_datatype($link, $engine, "s", "DATE NOT NULL", @date('Y-m-d'), 430);
  200. func_mysqli_stmt_bind_datatype($link, $engine, "s", "DATE", NULL, 440);
  201. func_mysqli_stmt_bind_datatype($link, $engine, "s", "DATETIME", @date('Y-m-d H:i:s'), 450);
  202. func_mysqli_stmt_bind_datatype($link, $engine, "s", "DATETIME NOT NULL", @date('Y-m-d H:i:s'), 460);
  203. func_mysqli_stmt_bind_datatype($link, $engine, "s", "DATETIME", NULL, 470);
  204. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TIMESTAMP", @date('Y-m-d H:i:s'), 480);
  205. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TIME", @date('H:i:s'), 490);
  206. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TIME NOT NULL", @date('H:i:s'), 500);
  207. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TIME", NULL, 510);
  208. func_mysqli_stmt_bind_datatype($link, $engine, "s", "YEAR", @date('Y'), 520);
  209. func_mysqli_stmt_bind_datatype($link, $engine, "s", "YEAR NOT NULL", @date('Y'), 530);
  210. func_mysqli_stmt_bind_datatype($link, $engine, "s", "YEAR", NULL, 540);
  211. $string255 = func_mysqli_stmt_bind_make_string(255);
  212. func_mysqli_stmt_bind_datatype($link, $engine, "s", "CHAR(1)", "a", 550);
  213. func_mysqli_stmt_bind_datatype($link, $engine, "s", "CHAR(255)", $string255, 560);
  214. func_mysqli_stmt_bind_datatype($link, $engine, "s", "CHAR(1) NOT NULL", "a", 570);
  215. func_mysqli_stmt_bind_datatype($link, $engine, "s", "CHAR(1)", NULL, 580);
  216. $string65k = func_mysqli_stmt_bind_make_string(65535);
  217. func_mysqli_stmt_bind_datatype($link, $engine, "s", "VARCHAR(1)", "a", 590);
  218. func_mysqli_stmt_bind_datatype($link, $engine, "s", "VARCHAR(255)", $string255, 600);
  219. func_mysqli_stmt_bind_datatype($link, $engine, "s", "VARCHAR(65635)", $string65k, 610);
  220. func_mysqli_stmt_bind_datatype($link, $engine, "s", "VARCHAR(1) NOT NULL", "a", 620);
  221. func_mysqli_stmt_bind_datatype($link, $engine, "s", "VARCHAR(1)", NULL, 630);
  222. func_mysqli_stmt_bind_datatype($link, $engine, "s", "BINARY(1)", "a", 640);
  223. func_mysqli_stmt_bind_datatype($link, $engine, "s", "BINARY(1)", chr(0), 650);
  224. func_mysqli_stmt_bind_datatype($link, $engine, "s", "BINARY(1) NOT NULL", "b", 660);
  225. func_mysqli_stmt_bind_datatype($link, $engine, "s", "BINARY(1)", NULL, 670);
  226. func_mysqli_stmt_bind_datatype($link, $engine, "s", "VARBINARY(1)", "a", 680);
  227. func_mysqli_stmt_bind_datatype($link, $engine, "s", "VARBINARY(1)", chr(0), 690);
  228. func_mysqli_stmt_bind_datatype($link, $engine, "s", "VARBINARY(1) NOT NULL", "b", 700);
  229. func_mysqli_stmt_bind_datatype($link, $engine, "s", "VARBINARY(1)", NULL, 710);
  230. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TINYBLOB", "a", 720);
  231. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TINYBLOB", chr(0), 730);
  232. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TINYBLOB NOT NULL", "b", 740);
  233. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TINYBLOB", NULL, 750);
  234. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TINYTEXT", "a", 760);
  235. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TINYTEXT NOT NULL", "a", 770);
  236. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TINYTEXT", NULL, 780);
  237. // Note: you cannot insert any blob values this way. But you can check the API at least partly this way
  238. // Extra BLOB tests are in mysqli_stmt_send_long()
  239. func_mysqli_stmt_bind_datatype($link, $engine, "b", "BLOB", "", 790);
  240. func_mysqli_stmt_bind_datatype($link, $engine, "b", "TEXT", "", 800);
  241. func_mysqli_stmt_bind_datatype($link, $engine, "b", "MEDIUMBLOB", "", 810);
  242. func_mysqli_stmt_bind_datatype($link, $engine, "b", "MEDIUMTEXT", "", 820);
  243. func_mysqli_stmt_bind_datatype($link, $engine, "b", "LONGBLOB", "", 830);
  244. func_mysqli_stmt_bind_datatype($link, $engine, "b", "LONGTEXT", "", 840);
  245. func_mysqli_stmt_bind_datatype($link, $engine, "s", "ENUM('a', 'b')", "a", 850);
  246. func_mysqli_stmt_bind_datatype($link, $engine, "s", "ENUM('a', 'b')", NULL, 860);
  247. func_mysqli_stmt_bind_datatype($link, $engine, "s", "SET('a', 'b')", "a", 870);
  248. func_mysqli_stmt_bind_datatype($link, $engine, "s", "SET('a', 'b')", NULL, 880);
  249. if (mysqli_get_server_version($link) >= 50600)
  250. func_mysqli_stmt_bind_datatype($link, $engine, "s", "TIME", "13:27:34.123456", 890, "13:27:34");
  251. $stmt = mysqli_stmt_init($link);
  252. if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (?, ?)"))
  253. printf("[2000] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  254. $id = null;
  255. $label = null;
  256. if (true !== ($tmp = mysqli_stmt_bind_param($stmt, "is", $id, $label)))
  257. printf("[2001] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  258. mysqli_stmt_execute($stmt);
  259. if (true !== ($tmp = mysqli_stmt_bind_param($stmt, "is", $id, $label)))
  260. printf("[2002] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  261. mysqli_stmt_close($stmt);
  262. include("table.inc");
  263. if (!$stmt = mysqli_stmt_init($link))
  264. printf("[2003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  265. if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (?, ?)"))
  266. printf("[2004] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  267. $id = $label = null;
  268. if (true !== ($tmp = $stmt->bind_param('is', $id, $label)))
  269. printf("[2005] Expecting boolean/true got %s/%s, [%d] %s\n",
  270. gettype($tmp), $tmp,
  271. $stmt->errno, $stmt->error);
  272. $id = 100; $label = 'z';
  273. if (!$stmt->execute())
  274. printf("[2006] [%d] %s\n", $stmt->errno, $stmt->error);
  275. if (!$res = mysqli_query($link, "SELECT id, label FROM test WHERE id = 100"))
  276. printf("[2007] Expecting record 100/z, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  277. if (!$row = mysqli_fetch_assoc($res))
  278. printf("[2008] Expecting row, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  279. if ($row['id'] != 100 || $row['label'] != 'z') {
  280. printf("[2009] Row seems wrong, dumping record\n");
  281. var_dump($row);
  282. }
  283. mysqli_free_result($res);
  284. $value_list = array(array('id' => 101, 'label' => 'a'), array('id' => 102, 'label' => 'b'));
  285. if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (?, ?)"))
  286. printf("[2010] [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  287. foreach ($value_list as $k => $values) {
  288. if (!mysqli_stmt_bind_param($stmt, 'is', $values['id'], $values['label'])) {
  289. printf("[2011] bind_param() failed for id = %d, [%d] %s\n",
  290. $values['id'], mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  291. continue;
  292. }
  293. if (!$stmt->execute())
  294. printf("[2012] [%d] execute() failed for id = %d, [%d] %s\n",
  295. $values['id'], mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
  296. if (!$res = mysqli_query($link, sprintf("SELECT label FROM test WHERE id = %d", $values['id'])))
  297. printf("[2013] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  298. if (!$row = mysqli_fetch_assoc($res))
  299. printf("[2014] Cannot find row id = %d\n", $values['id']);
  300. else if (isset($row['label']) && ($values['label'] != $row['label']))
  301. printf("[2015] Expecting label = %s, got label = %s\n", $values['label'], $row['label']);
  302. mysqli_free_result($res);
  303. }
  304. mysqli_stmt_close($stmt);
  305. mysqli_close($link);
  306. /* Check that the function alias exists. It's a deprecated function,
  307. but we have not announce the removal so far, therefore we need to check for it */
  308. if (!is_null($tmp = @mysqli_stmt_bind_param()))
  309. printf("[021] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  310. print "done!";
  311. ?>
  312. --CLEAN--
  313. <?php
  314. require_once("clean_table.inc");
  315. ?>
  316. --EXPECTF--
  317. Warning: mysqli_stmt_bind_param(): Number of elements in type definition string doesn't match number of bind variables in %s on line %d
  318. Warning: mysqli_stmt_bind_param(): Number of elements in type definition string doesn't match number of bind variables in %s on line %d
  319. Warning: mysqli_stmt_bind_param(): Number of variables doesn't match number of parameters in prepared statement in %s on line %d
  320. Warning: mysqli_stmt_bind_param(): Number of elements in type definition string doesn't match number of bind variables in %s on line %d
  321. Warning: mysqli_stmt_bind_param(): Undefined fieldtype a (parameter 3) in %s on line %d
  322. Warning: mysqli_stmt_bind_param(): Undefined fieldtype a (parameter 4) in %s on line %d
  323. done!