mysqli_get_proto_info.phpt 787 B

1234567891011121314151617181920212223242526272829
  1. --TEST--
  2. mysqli_get_proto_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_proto_info()))
  13. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  14. if (!is_null($tmp = @mysqli_get_proto_info(NULL)))
  15. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  16. require "table.inc";
  17. if (!is_int($info = mysqli_get_proto_info($link)) || ($info < 1))
  18. printf("[003] Expecting int/any_non_empty, got %s/%s\n", gettype($info), $info);
  19. if (!is_null($tmp = @mysqli_get_proto_info('too many', 'arguments')))
  20. printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  21. print "done!";
  22. ?>
  23. --EXPECTF--
  24. done!