mysqli_get_host_info.phpt 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --TEST--
  2. mysqli_get_host_info()
  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. if (!is_null($tmp = @mysqli_get_host_info()))
  13. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  14. if (!is_null($tmp = @mysqli_get_host_info(NULL)))
  15. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  16. require "table.inc";
  17. if (!is_string($info = mysqli_get_host_info($link)) || ('' === $info))
  18. printf("[003] Expecting string/any_non_empty, got %s/%s\n", gettype($info), $info);
  19. if ($IS_MYSQLND && $host != 'localhost' && $host != '127.0.0.1' && $port != '' && $host != "" && strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') {
  20. /* this should be a TCP/IP connection and not a Unix Socket (or SHM or Named Pipe) */
  21. if (!stristr($info, "TCP/IP"))
  22. printf("[004] Should be a TCP/IP connection but mysqlnd says '%s'\n", $info);
  23. }
  24. print "done!";
  25. ?>
  26. --CLEAN--
  27. <?php
  28. require_once("clean_table.inc");
  29. ?>
  30. --EXPECTF--
  31. done!