mysql_fetch_assoc.phpt 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. --TEST--
  2. mysql_fetch_assoc()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. include "connect.inc";
  11. $tmp = NULL;
  12. $link = NULL;
  13. // Note: no SQL type tests, internally the same function gets used as for mysql_fetch_array() which does a lot of SQL type test
  14. if (!is_null($tmp = @mysql_fetch_assoc()))
  15. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  16. if (NULL !== ($tmp = @mysql_fetch_assoc($link)))
  17. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  18. require('table.inc');
  19. if (!$res = mysql_query("SELECT id, label FROM test ORDER BY id LIMIT 1", $link)) {
  20. printf("[004] [%d] %s\n", mysql_errno($link), mysql_error($link));
  21. }
  22. print "[005]\n";
  23. var_dump(mysql_fetch_assoc($res));
  24. print "[006]\n";
  25. var_dump(mysql_fetch_assoc($res));
  26. mysql_free_result($res);
  27. if (!$res = mysql_query("SELECT 1 AS a, 2 AS a, 3 AS c, 4 AS C, NULL AS d, true AS e", $link)) {
  28. printf("[007] Cannot run query, [%d] %s\n", mysql_errno($link), $mysql_error($link));
  29. }
  30. print "[008]\n";
  31. var_dump(mysql_fetch_assoc($res));
  32. mysql_free_result($res);
  33. if (false !== ($tmp = mysql_fetch_assoc($res)))
  34. printf("[008] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  35. mysql_close($link);
  36. include('table.inc');
  37. if (!$res = mysql_query("SELECT id, label, id AS _id, CONCAT(label, 'a') _label, NULL as _foo FROM test _test ORDER BY id ASC LIMIT 1", $link)) {
  38. printf("[009] [%d] %s\n", mysql_errno($link), $mysql_error($link));
  39. }
  40. print "[010]\n";
  41. var_dump(mysql_fetch_assoc($res));
  42. mysql_free_result($res);
  43. mysql_close($link);
  44. print "done!";
  45. ?>
  46. --CLEAN--
  47. <?php
  48. require_once("clean_table.inc");
  49. ?>
  50. --EXPECTF--
  51. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  52. [005]
  53. array(2) {
  54. [%u|b%"id"]=>
  55. %unicode|string%(1) "1"
  56. [%u|b%"label"]=>
  57. %unicode|string%(1) "a"
  58. }
  59. [006]
  60. bool(false)
  61. [008]
  62. array(5) {
  63. [%u|b%"a"]=>
  64. %unicode|string%(1) "2"
  65. [%u|b%"c"]=>
  66. %unicode|string%(1) "3"
  67. [%u|b%"C"]=>
  68. %unicode|string%(1) "4"
  69. [%u|b%"d"]=>
  70. NULL
  71. [%u|b%"e"]=>
  72. %unicode|string%(1) "1"
  73. }
  74. Warning: mysql_fetch_assoc(): %d is not a valid MySQL result resource in %s on line %d
  75. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  76. [010]
  77. array(5) {
  78. [%u|b%"id"]=>
  79. %unicode|string%(1) "1"
  80. [%u|b%"label"]=>
  81. %unicode|string%(1) "a"
  82. [%u|b%"_id"]=>
  83. %unicode|string%(1) "1"
  84. [%u|b%"_label"]=>
  85. %unicode|string%(2) "aa"
  86. [%u|b%"_foo"]=>
  87. NULL
  88. }
  89. done!