mysqli_ping.phpt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --TEST--
  2. mysqli_ping()
  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_ping()))
  15. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  16. require('table.inc');
  17. if (!is_null($tmp = @mysqli_ping($link, $link)))
  18. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  19. var_dump(mysqli_ping($link));
  20. // provoke an error to check if mysqli_ping resets it
  21. $res = mysqli_query($link, 'SELECT * FROM unknown_table');
  22. if (!($errno = mysqli_errno($link)))
  23. printf("[003] Statement should have caused an error\n");
  24. var_dump(mysqli_ping($link));
  25. if ($errno === mysqli_errno($link))
  26. printf("[004] Error codes should have been reset\n");
  27. mysqli_close($link);
  28. if (!is_null($tmp = mysqli_ping($link)))
  29. printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  30. print "done!";
  31. ?>
  32. --EXPECTF--
  33. bool(true)
  34. bool(true)
  35. Warning: mysqli_ping(): Couldn't fetch mysqli in %s on line %d
  36. done!