mysql_stat.phpt 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --TEST--
  2. mysql_stat()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. include_once "connect.inc";
  11. $dbname = 'test';
  12. $tmp = NULL;
  13. $link = NULL;
  14. if (!is_null($tmp = @mysql_stat($link)))
  15. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  16. require('table.inc');
  17. if (!is_null($tmp = @mysql_stat($link, "foo")))
  18. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  19. if ((!is_string($stat = mysql_stat($link))) || ('' === $stat))
  20. printf("[003] Expecting non empty string, got %s/'%s', [%d] %s\n",
  21. gettype($stat), $stat, mysql_errno($link), mysql_error($link));
  22. if ((version_compare(PHP_VERSION, '5.9.9', '>') == 1) && !is_unicode($stat)) {
  23. printf("[004] Expecting Unicode error message!\n");
  24. var_inspect($stat);
  25. }
  26. if ((!is_string($stat_def = mysql_stat())) || ('' === $stat_def))
  27. printf("[003] Expecting non empty string, got %s/'%s', [%d] %s\n",
  28. gettype($stat_def), $stat_def, mysql_errno(), mysql_error());
  29. assert(soundex($stat) === soundex($stat_def));
  30. mysql_close($link);
  31. if (false !== ($tmp = mysql_stat($link)))
  32. printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  33. print "done!";
  34. ?>
  35. --EXPECTF--
  36. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  37. Warning: mysql_stat(): %d is not a valid MySQL-Link resource in %s on line %d
  38. done!