mysql_db_name.phpt 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. --TEST--
  2. mysql_db_name()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. include "connect.inc";
  11. $tmp = NULL;
  12. $link = NULL;
  13. if (NULL !== ($tmp = @mysql_db_name()))
  14. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  15. if (NULL !== ($tmp = @mysql_db_name($link, $link)))
  16. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  17. require('table.inc');
  18. if (!$res = @mysql_list_dbs($link))
  19. printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
  20. if (!$num = mysql_num_rows($res))
  21. printf("[004] Empty database list? [%d] %s\n", mysql_errno($link), mysql_error($link));
  22. if (false !== ($tmp = mysql_db_name($res, -1)))
  23. printf("[005] Expecting boolean/false, got %s/%s. [%d] %s\n",
  24. gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
  25. if (false !== ($tmp = mysql_db_name($res, $num + 1)))
  26. printf("[006] Expecting boolean/false, got %s/%s. [%d] %s\n",
  27. gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
  28. $unicode = (boolean)(version_compare(PHP_VERSION, '5.9.9', '>') == 1);
  29. for ($i = 0; $i < $num; $i++) {
  30. if ('' === ($dbname = mysql_db_name($res, $i)))
  31. printf("[%03d] Got empty database name! [%d] %s\n",
  32. (($i * 2) + 1) + 6, mysql_errno($link), mysql_error($link));
  33. if ($unicode && !is_unicode($dbname)) {
  34. printf("[%03d] Expecting unicode string! [%d] %s\n",
  35. (($i * 2) + 2) + 6, mysql_errno($link), mysql_error($link));
  36. var_inspect($dbname);
  37. }
  38. }
  39. mysql_free_result($res);
  40. if (false !== ($tmp = mysql_db_name($res, $num)))
  41. printf("[999] Expecting boolean/false, got %s/%s. [%d] %s\n",
  42. gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
  43. mysql_close($link);
  44. print "done!\n";
  45. ?>
  46. --EXPECTF--
  47. 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
  48. Warning: mysql_db_name(): Unable to jump to row -1 on MySQL result index %d in %s on line %d
  49. Warning: mysql_db_name(): Unable to jump to row %d on MySQL result index %d in %s on line %d
  50. Warning: mysql_db_name(): %d is not a valid MySQL result resource in %s on line %d
  51. done!