mysqli_fetch_fields.phpt 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. --TEST--
  2. mysqli_fetch_fields()
  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. // Note: no SQL type tests, internally the same function gets used as for mysqli_fetch_array() which does a lot of SQL type test
  15. if (!is_null($tmp = @mysqli_fetch_fields()))
  16. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  17. if (!is_null($tmp = @mysqli_fetch_fields($link)))
  18. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  19. require('table.inc');
  20. // Make sure that client, connection and result charsets are all the
  21. // same. Not sure whether this is strictly necessary.
  22. if (!mysqli_set_charset($link, 'utf8'))
  23. printf("[%d] %s\n", mysqli_errno($link), mysqli_errno($link));
  24. $charsetInfo = mysqli_get_charset($link);
  25. if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 1")) {
  26. printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  27. }
  28. $fields = mysqli_fetch_fields($res);
  29. foreach ($fields as $k => $field) {
  30. var_dump($field);
  31. switch ($k) {
  32. case 1:
  33. /* label column, result set charset */
  34. if ($field->charsetnr != $charsetInfo->number) {
  35. printf("[004] Expecting charset %s/%d got %d\n",
  36. $charsetInfo->charset,
  37. $charsetInfo->number, $field->charsetnr);
  38. }
  39. if ($field->length != $charsetInfo->max_length) {
  40. printf("[005] Expecting length %d got %d\n",
  41. $charsetInfo->max_length,
  42. $field->max_length);
  43. }
  44. break;
  45. }
  46. }
  47. mysqli_free_result($res);
  48. if (NULL !== ($tmp = mysqli_fetch_fields($res)))
  49. printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  50. mysqli_close($link);
  51. print "done!";
  52. ?>
  53. --CLEAN--
  54. <?php
  55. require_once("clean_table.inc");
  56. ?>
  57. --EXPECTF--
  58. object(stdClass)#%d (13) {
  59. [%u|b%"name"]=>
  60. %unicode|string%(2) "ID"
  61. [%u|b%"orgname"]=>
  62. %unicode|string%(2) "id"
  63. [%u|b%"table"]=>
  64. %unicode|string%(4) "TEST"
  65. [%u|b%"orgtable"]=>
  66. %unicode|string%(%d) "%s"
  67. [%u|b%"def"]=>
  68. %unicode|string%(0) ""
  69. [%u|b%"db"]=>
  70. %unicode|string%(%d) "%s"
  71. [%u|b%"catalog"]=>
  72. %unicode|string%(%d) "%s"
  73. [%u|b%"max_length"]=>
  74. int(1)
  75. [%u|b%"length"]=>
  76. int(11)
  77. [%u|b%"charsetnr"]=>
  78. int(63)
  79. [%u|b%"flags"]=>
  80. int(49155)
  81. [%u|b%"type"]=>
  82. int(3)
  83. [%u|b%"decimals"]=>
  84. int(0)
  85. }
  86. object(stdClass)#%d (13) {
  87. [%u|b%"name"]=>
  88. %unicode|string%(5) "label"
  89. [%u|b%"orgname"]=>
  90. %unicode|string%(5) "label"
  91. [%u|b%"table"]=>
  92. %unicode|string%(4) "TEST"
  93. [%u|b%"orgtable"]=>
  94. %unicode|string%(%d) "%s"
  95. [%u|b%"def"]=>
  96. %unicode|string%(0) ""
  97. [%u|b%"db"]=>
  98. %unicode|string%(%d) "%s"
  99. [%u|b%"catalog"]=>
  100. %unicode|string%(%d) "%s"
  101. [%u|b%"max_length"]=>
  102. int(1)
  103. [%u|b%"length"]=>
  104. int(%d)
  105. [%u|b%"charsetnr"]=>
  106. int(%d)
  107. [%u|b%"flags"]=>
  108. int(0)
  109. [%u|b%"type"]=>
  110. int(254)
  111. [%u|b%"decimals"]=>
  112. int(0)
  113. }
  114. Warning: mysqli_fetch_fields(): Couldn't fetch mysqli_result in %s on line %d
  115. done!