mysqli_error.phpt 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --TEST--
  2. mysqli_error()
  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. if (!is_null($tmp = @mysqli_error()))
  15. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  16. if (!is_null($tmp = @mysqli_error($link)))
  17. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  18. if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
  19. printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  20. $host, $user, $db, $port, $socket);
  21. }
  22. $tmp = mysqli_error($link);
  23. if (!is_string($tmp) || ('' !== $tmp))
  24. printf("[004] Expecting string/empty, got %s/%s. [%d] %s\n", gettype($tmp), $tmp, mysqli_errno($link), mysqli_error($link));
  25. if (!mysqli_query($link, 'DROP TABLE IF EXISTS test')) {
  26. printf("[005] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  27. }
  28. mysqli_query($link, 'SELECT * FROM test');
  29. $tmp = mysqli_error($link);
  30. if (!is_string($tmp) || !preg_match("/Table '\w*\.test' doesn't exist/su", $tmp))
  31. printf("[006] Expecting string/[Table... doesn't exit], got %s/%s. [%d] %s\n", gettype($tmp), $tmp, mysqli_errno($link), mysqli_error($link));
  32. mysqli_close($link);
  33. var_dump(mysqli_error($link));
  34. print "done!";
  35. ?>
  36. --EXPECTF--
  37. Warning: mysqli_error(): Couldn't fetch mysqli in %s on line %d
  38. NULL
  39. done!