mysqli_fetch_field_oo.phpt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. --TEST--
  2. mysqli_fetch_field()
  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. $mysqli = new mysqli();
  16. $res = @new mysqli_result($mysqli);
  17. if (!is_null($tmp = @$res->fetch_field()))
  18. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  19. require('table.inc');
  20. if (!$mysqli = new mysqli($host, $user, $passwd, $db, $port, $socket))
  21. printf("[002] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  22. $host, $user, $db, $port, $socket);
  23. if (!is_null($tmp = @$res->fetch_field($link)))
  24. printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  25. // Make sure that client, connection and result charsets are all the
  26. // same. Not sure whether this is strictly necessary.
  27. if (!$mysqli->set_charset('utf8'))
  28. printf("[%d] %s\n", $mysqli->errno, $mysqli->errno);
  29. $charsetInfo = $mysqli->get_charset();
  30. if (!$res = $mysqli->query("SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 1")) {
  31. printf("[004] [%d] %s\n", $mysqli->errno, $mysqli->error);
  32. }
  33. var_dump($res->fetch_field());
  34. $tmp = $res->fetch_field();
  35. var_dump($tmp);
  36. if ($tmp->charsetnr != $charsetInfo->number) {
  37. printf("[005] Expecting charset %s/%d got %d\n",
  38. $charsetInfo->charset, $charsetInfo->number, $tmp->charsetnr);
  39. }
  40. if ($tmp->length != $charsetInfo->max_length) {
  41. printf("[006] Expecting length %d got %d\n",
  42. $charsetInfo->max_length, $tmp->max_length);
  43. }
  44. if ($tmp->db != $db) {
  45. printf("[007] Expecting database '%s' got '%s'\n",
  46. $db, $tmp->db);
  47. }
  48. var_dump($res->fetch_field());
  49. $res->free_result();
  50. if (NULL !== ($tmp = $res->fetch_field()))
  51. printf("[007] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  52. $mysqli->close();
  53. print "done!";
  54. ?>
  55. --CLEAN--
  56. <?php
  57. require_once("clean_table.inc");
  58. ?>
  59. --EXPECTF--
  60. object(stdClass)#%d (13) {
  61. [%u|b%"name"]=>
  62. %unicode|string%(2) "ID"
  63. [%u|b%"orgname"]=>
  64. %unicode|string%(2) "id"
  65. [%u|b%"table"]=>
  66. %unicode|string%(4) "TEST"
  67. [%u|b%"orgtable"]=>
  68. %unicode|string%(4) "test"
  69. [%u|b%"def"]=>
  70. %unicode|string%(0) ""
  71. [%u|b%"db"]=>
  72. %unicode|string%(%d) "%s"
  73. [%u|b%"catalog"]=>
  74. %unicode|string%(%d) "%s"
  75. [%u|b%"max_length"]=>
  76. int(1)
  77. [%u|b%"length"]=>
  78. int(11)
  79. [%u|b%"charsetnr"]=>
  80. int(63)
  81. [%u|b%"flags"]=>
  82. int(49155)
  83. [%u|b%"type"]=>
  84. int(3)
  85. [%u|b%"decimals"]=>
  86. int(0)
  87. }
  88. object(stdClass)#%d (13) {
  89. [%u|b%"name"]=>
  90. %unicode|string%(5) "label"
  91. [%u|b%"orgname"]=>
  92. %unicode|string%(5) "label"
  93. [%u|b%"table"]=>
  94. %unicode|string%(4) "TEST"
  95. [%u|b%"orgtable"]=>
  96. %unicode|string%(4) "test"
  97. [%u|b%"def"]=>
  98. %unicode|string%(0) ""
  99. [%u|b%"db"]=>
  100. %unicode|string%(%d) "%s"
  101. [%u|b%"catalog"]=>
  102. %unicode|string%(%d) "%s"
  103. [%u|b%"max_length"]=>
  104. int(%d)
  105. [%u|b%"length"]=>
  106. int(%d)
  107. [%u|b%"charsetnr"]=>
  108. int(%d)
  109. [%u|b%"flags"]=>
  110. int(0)
  111. [%u|b%"type"]=>
  112. int(254)
  113. [%u|b%"decimals"]=>
  114. int(0)
  115. }
  116. bool(false)
  117. Warning: mysqli_result::fetch_field(): Couldn't fetch mysqli_result in %s on line %d
  118. done!