mysql_client_encoding.phpt 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. --TEST--
  2. mysql_client_encoding()
  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. $tmp = NULL;
  12. $link = NULL;
  13. if (!$link = my_mysql_connect($host, $user, $passwd, $db, $port, $socket))
  14. printf("[002] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  15. $host, $user, $db, $port, $socket);
  16. $default_link_enc = mysql_client_encoding();
  17. $link_enc = mysql_client_encoding($link);
  18. if ($default_link_enc !== $link_enc)
  19. printf("[003] %s != %s, [%d] %s\n", $default_link_enc, $link_enc, mysql_errno($link), mysql_error($link));
  20. if (!$res = mysql_query('SELECT version() AS server_version', $link))
  21. printf("[004] [%d] %s\n", mysql_errno($link), mysql_error($link));
  22. $tmp = mysql_fetch_assoc($res);
  23. mysql_free_result($res);
  24. $version = explode('.', $tmp['server_version']);
  25. if (empty($version))
  26. printf("[005] Cannot determine server version, need MySQL Server 4.1+ for the test!\n");
  27. if ($version[0] <= 4 && $version[1] < 1)
  28. printf("[006] Need MySQL Server 4.1+ for the test!\n");
  29. if (!$res = mysql_query('SELECT @@character_set_connection AS charset, @@collation_connection AS collation', $link))
  30. printf("[007] [%d] %s\n", mysql_errno($link), mysql_error($link));
  31. $tmp = mysql_fetch_assoc($res);
  32. mysql_free_result($res);
  33. if (!$tmp['charset'])
  34. printf("[008] Cannot determine current character set and collation\n");
  35. if ($link_enc !== $tmp['charset']) {
  36. if ($link_enc === $tmp['collation']) {
  37. printf("[009] Known bug, collation instead of chatset returned, http://bugs.mysql.com/bug.php?id=7923\n");
  38. } else {
  39. printf("[009] Check manually, watch out for unicode and others\n");
  40. var_dump($link_enc);
  41. var_dump($tmp);
  42. }
  43. }
  44. if ((version_compare(PHP_VERSION, '5.9.9', '>') == 1) && function_exists('is_unicode')) {
  45. // unicode mode
  46. if (!is_unicode($default_link_enc) || !is_unicode($link_enc)) {
  47. printf("[010] No unicode returned!\n");
  48. var_dump($default_link_enc);
  49. var_dump($link_enc);
  50. }
  51. }
  52. mysql_close($link);
  53. if (false !== ($tmp = @mysql_client_encoding($link)))
  54. printf("[012] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  55. print "done!";
  56. ?>
  57. --EXPECTF--
  58. 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
  59. done!