mysqli_fetch_object.phpt 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. --TEST--
  2. mysqli_fetch_object()
  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. include_once("connect.inc");
  12. set_error_handler('handle_catchable_fatal');
  13. $tmp = NULL;
  14. $link = NULL;
  15. if (!is_null($tmp = @mysqli_fetch_object()))
  16. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  17. if (!is_null($tmp = @mysqli_fetch_object($link)))
  18. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  19. require('table.inc');
  20. if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5")) {
  21. printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  22. }
  23. $obj = mysqli_fetch_object($res);
  24. if (($obj->ID !== "1") || ($obj->label !== "a") || (get_class($obj) != 'stdClass')) {
  25. printf("[004] Object seems wrong. [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  26. var_dump($obj);
  27. }
  28. class mysqli_fetch_object_test {
  29. public $a = null;
  30. public $b = null;
  31. public function toString() {
  32. var_dump($this);
  33. }
  34. }
  35. $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_test');
  36. if (($obj->ID !== "2") || ($obj->label !== "b") || ($obj->a !== NULL) || ($obj->b !== NULL) || (get_class($obj) != 'mysqli_fetch_object_test')) {
  37. printf("[005] Object seems wrong. [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  38. var_dump($obj);
  39. }
  40. class mysqli_fetch_object_construct extends mysqli_fetch_object_test {
  41. public function __construct($a, $b) {
  42. $this->a = $a;
  43. $this->b = $b;
  44. }
  45. }
  46. $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array());
  47. if (($obj->ID !== "3") || ($obj->label !== "c") || ($obj->a !== NULL) || ($obj->b !== NULL) || (get_class($obj) != 'mysqli_fetch_object_construct')) {
  48. printf("[006] Object seems wrong. [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  49. var_dump($obj);
  50. }
  51. $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a'));
  52. if (($obj->ID !== "4") || ($obj->label !== "d") || ($obj->a !== 'a') || ($obj->b !== NULL) || (get_class($obj) != 'mysqli_fetch_object_construct')) {
  53. printf("[007] Object seems wrong. [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  54. var_dump($obj);
  55. }
  56. $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a', 'b'));
  57. if (($obj->ID !== "5") || ($obj->label !== "e") || ($obj->a !== 'a') || ($obj->b !== 'b') || (get_class($obj) != 'mysqli_fetch_object_construct')) {
  58. printf("[008] Object seems wrong. [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  59. var_dump($obj);
  60. }
  61. var_dump(mysqli_fetch_object($res, 'mysqli_fetch_object_construct', array('a', 'b', 'c')));
  62. var_dump(mysqli_fetch_object($res));
  63. mysqli_free_result($res);
  64. if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST")) {
  65. printf("[009] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  66. }
  67. mysqli_free_result($res);
  68. var_dump(mysqli_fetch_object($res));
  69. if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5"))
  70. printf("[010] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  71. /*
  72. TODO
  73. I'm using the procedural interface, this should not throw an exception.
  74. Also, I did not ask to get exceptions using the mysqli_options()
  75. */
  76. try {
  77. if (false !== ($obj = @mysqli_fetch_object($res, 'mysqli_fetch_object_construct', 'a')))
  78. printf("[011] Should have failed\n");
  79. } catch (Exception $e) {
  80. printf("%s\n", $e->getMessage());
  81. }
  82. mysqli_free_result($res);
  83. if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5"))
  84. printf("[012] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  85. class mysqli_fetch_object_private_constructor extends mysqli_fetch_object_test {
  86. private function __construct($a, $b) {
  87. $this->a = $a;
  88. $this->b = $b;
  89. }
  90. }
  91. /*
  92. TODO
  93. I think we should bail out here. The following line will give a Fatal error: Call to private ... from invalid context
  94. var_dump($obj = new mysqli_fetch_object_private_constructor(1, 2));
  95. This does not fail.
  96. */
  97. $obj = mysqli_fetch_object($res, 'mysqli_fetch_object_private_constructor', array('a', 'b'));
  98. mysqli_free_result($res);
  99. // Fatal error, script execution will end
  100. var_dump(mysqli_fetch_object($res, 'this_class_does_not_exist'));
  101. mysqli_close($link);
  102. print "done!";
  103. ?>
  104. --CLEAN--
  105. <?php
  106. require_once("clean_table.inc");
  107. ?>
  108. --EXPECTF--
  109. [E_WARNING] mysqli_fetch_object() expects at least 1 parameter, 0 given in %s on line %d
  110. [E_WARNING] mysqli_fetch_object() expects parameter 1 to be mysqli_result, null given in %s on line %d
  111. [E_WARNING] Missing argument 1 for mysqli_fetch_object_construct::__construct() in %s on line %d
  112. [E_WARNING] Missing argument 2 for mysqli_fetch_object_construct::__construct() in %s on line %d
  113. [E_NOTICE] Undefined variable: a in %s on line %d
  114. [E_NOTICE] Undefined variable: b in %s on line %d
  115. [E_WARNING] Missing argument 2 for mysqli_fetch_object_construct::__construct() in %s on line %d
  116. [E_NOTICE] Undefined variable: b in %s on line %d
  117. NULL
  118. NULL
  119. [E_WARNING] mysqli_fetch_object(): Couldn't fetch mysqli_result in %s on line %d
  120. NULL
  121. [E_RECOVERABLE_ERROR] Argument 3 passed to mysqli_fetch_object() must be of the type array, string given in %s on line %d
  122. Parameter ctor_params must be an array
  123. Fatal error: Class 'this_class_does_not_exist' not found in %s on line %d