mb_http_output.phpt 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. --TEST--
  2. mb_http_output()
  3. --SKIPIF--
  4. <?php extension_loaded('mbstring') or die('skip mbstring not available'); ?>
  5. --FILE--
  6. <?php
  7. //TODO: Add more encoding. Wrong parameter type test.
  8. //$debug = true;
  9. ini_set('include_path', dirname(__FILE__));
  10. include_once('common.inc');
  11. // Set HTTP output encoding to ASCII
  12. $r = mb_http_output('ASCII');
  13. ($r === TRUE) ? print "OK_ASCII_SET\n" : print "NG_ASCII_SET\n";
  14. $enc = mb_http_output();
  15. print "$enc\n";
  16. // Set HTTP output encoding to SJIS
  17. $r = mb_http_output('SJIS');
  18. ($r === TRUE) ? print "OK_SJIS_SET\n" : print "NG_SJIS_SET\n";
  19. $enc = mb_http_output();
  20. print "$enc\n";
  21. // Set HTTP output encoding to JIS
  22. $r = mb_http_output('JIS');
  23. ($r === TRUE) ? print "OK_JIS_SET\n" : print "NG_JIS_SET\n";
  24. $enc = mb_http_output();
  25. print "$enc\n";
  26. // Set HTTP output encoding to UTF8
  27. $r = mb_http_output('UTF-8');
  28. ($r === TRUE) ? print "OK_UTF-8_SET\n" : print "NG_UTF-8_SET\n";
  29. $enc = mb_http_output();
  30. print "$enc\n";
  31. // Set HTTP output encoding to EUC-JP
  32. $r = mb_http_output('EUC-JP');
  33. ($r === TRUE) ? print "OK_EUC-JP_SET\n" : print "NG_EUC-JP_SET\n";
  34. $enc = mb_http_output();
  35. print "$enc\n";
  36. // Invalid parameters
  37. print "== INVALID PARAMETER ==\n";
  38. // Note: Bad string raise Warning. Bad Type raise Notice (Type Conversion) and Warning....
  39. $r = mb_http_output('BAD_NAME');
  40. ($r === FALSE) ? print "OK_BAD_SET\n" : print "NG_BAD_SET\n";
  41. $enc = mb_http_output();
  42. print "$enc\n";
  43. $r = mb_http_output($t_ary);
  44. ($r === FALSE) ? print "OK_BAD_ARY_SET\n" : print "NG_BAD_ARY_SET\n";
  45. $enc = mb_http_output();
  46. print "$enc\n";
  47. $r = mb_http_output($t_obj);
  48. ($r === FALSE) ? print "OK_BAD_OBJ_SET\n" : print "NG_BAD_OBJ_SET\n";
  49. $enc = mb_http_output();
  50. print "$enc\n";
  51. ?>
  52. --EXPECT--
  53. OK_ASCII_SET
  54. ASCII
  55. OK_SJIS_SET
  56. SJIS
  57. OK_JIS_SET
  58. JIS
  59. OK_UTF-8_SET
  60. UTF-8
  61. OK_EUC-JP_SET
  62. EUC-JP
  63. == INVALID PARAMETER ==
  64. ERR: Warning
  65. OK_BAD_SET
  66. EUC-JP
  67. ERR: Warning
  68. OK_BAD_ARY_SET
  69. EUC-JP
  70. ERR: Warning
  71. OK_BAD_OBJ_SET
  72. EUC-JP