mysqli_fetch_object_oo.phpt 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. require_once("connect.inc");
  12. set_error_handler('handle_catchable_fatal');
  13. $tmp = NULL;
  14. $link = NULL;
  15. $mysqli = new mysqli();
  16. $res = @new mysqli_result($mysqli);
  17. if (!is_null($tmp = @$res->fetch_object()))
  18. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  19. require('table.inc');
  20. if (!$mysqli = new my_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 (!$res = $mysqli->query("SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5")) {
  24. printf("[003] [%d] %s\n", $mysqli->errno, $mysqli->error);
  25. }
  26. if (!is_null($tmp = @$res->fetch_object($link)))
  27. printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  28. if (!is_null($tmp = @$res->fetch_object($link, $link)))
  29. printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  30. if (!is_null($tmp = @$res->fetch_object($link, $link, $link)))
  31. printf("[006] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  32. $obj = mysqli_fetch_object($res);
  33. if (($obj->ID !== "1") || ($obj->label !== "a") || (get_class($obj) != 'stdClass')) {
  34. printf("[007] Object seems wrong. [%d] %s\n", $mysqli->errno, $mysqli->error);
  35. var_dump($obj);
  36. }
  37. class mysqli_fetch_object_test {
  38. public $a = null;
  39. public $b = null;
  40. public function toString() {
  41. var_dump($this);
  42. }
  43. }
  44. $obj = $res->fetch_object('mysqli_fetch_object_test');
  45. if (($obj->ID !== "2") || ($obj->label !== "b") || ($obj->a !== NULL) || ($obj->b !== NULL) || (get_class($obj) != 'mysqli_fetch_object_test')) {
  46. printf("[008] Object seems wrong. [%d] %s\n", $mysqli->errno, $mysqli->error);
  47. var_dump($obj);
  48. }
  49. class mysqli_fetch_object_construct extends mysqli_fetch_object_test {
  50. public function __construct($a, $b) {
  51. $this->a = $a;
  52. $this->b = $b;
  53. }
  54. }
  55. $obj = $res->fetch_object('mysqli_fetch_object_construct', null);
  56. if (($obj->ID !== "3") || ($obj->label !== "c") || ($obj->a !== NULL) || ($obj->b !== NULL) || (get_class($obj) != 'mysqli_fetch_object_construct')) {
  57. printf("[009] Object seems wrong. [%d] %s\n", $mysqli->errno, $mysqli->error);
  58. var_dump($obj);
  59. }
  60. $obj = $res->fetch_object('mysqli_fetch_object_construct', array('a'));
  61. if (($obj->ID !== "4") || ($obj->label !== "d") || ($obj->a !== 'a') || ($obj->b !== NULL) || (get_class($obj) != 'mysqli_fetch_object_construct')) {
  62. printf("[010] Object seems wrong. [%d] %s\n", $mysqli->errno, $mysqli->error);
  63. var_dump($obj);
  64. }
  65. $obj = $res->fetch_object('mysqli_fetch_object_construct', array('a', 'b'));
  66. if (($obj->ID !== "5") || ($obj->label !== "e") || ($obj->a !== 'a') || ($obj->b !== 'b') || (get_class($obj) != 'mysqli_fetch_object_construct')) {
  67. printf("[011] Object seems wrong. [%d] %s\n", $mysqli->errno, $mysqli->error);
  68. var_dump($obj);
  69. }
  70. var_dump($res->fetch_object('mysqli_fetch_object_construct', array('a', 'b', 'c')));
  71. var_dump(mysqli_fetch_object($res));
  72. mysqli_free_result($res);
  73. if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST")) {
  74. printf("[012] [%d] %s\n", $mysqli->errno, $mysqli->error);
  75. }
  76. mysqli_free_result($res);
  77. var_dump(mysqli_fetch_object($res));
  78. // Fatal error, script execution will end
  79. var_dump($res->fetch_object('this_class_does_not_exist'));
  80. $mysqli->close();
  81. print "done!";
  82. ?>
  83. --CLEAN--
  84. <?php
  85. require_once("clean_table.inc");
  86. ?>
  87. --EXPECTF--
  88. [E_WARNING] mysqli_result::__construct(): invalid object or resource mysql%s
  89. %s on line %d
  90. [E_WARNING] mysqli_result::fetch_object(): Couldn't fetch mysqli_result in %s on line %d
  91. [E_WARNING] mysqli_result::fetch_object() expects parameter 1 to be string, object given in %s on line %d
  92. [E_RECOVERABLE_ERROR] Argument 2 passed to mysqli_result::fetch_object() must be of the type array, object given in %s on line %d
  93. [E_WARNING] mysqli_result::fetch_object() expects parameter 1 to be string, object given in %s on line %d
  94. [E_RECOVERABLE_ERROR] Argument 2 passed to mysqli_result::fetch_object() must be of the type array, object given in %s on line %d
  95. [E_WARNING] mysqli_result::fetch_object() expects at most 2 parameters, 3 given in %s on line %d
  96. [E_RECOVERABLE_ERROR] Argument 2 passed to mysqli_result::fetch_object() must be of the type array, null given in %s on line %d
  97. [E_WARNING] Missing argument 1 for mysqli_fetch_object_construct::__construct() in %s on line %d
  98. [E_WARNING] Missing argument 2 for mysqli_fetch_object_construct::__construct() in %s on line %d
  99. [E_NOTICE] Undefined variable: a in %s on line %d
  100. [E_NOTICE] Undefined variable: b in %s on line %d
  101. [E_WARNING] Missing argument 2 for mysqli_fetch_object_construct::__construct() in %s on line %d
  102. [E_NOTICE] Undefined variable: b in %s on line %d
  103. NULL
  104. NULL
  105. [E_WARNING] mysqli_fetch_object(): Couldn't fetch mysqli_result in %s on line %d
  106. NULL
  107. Fatal error: Class 'this_class_does_not_exist' not found in %s on line %d