htmlentities14.phpt 483 B

12345678910111213141516
  1. --TEST--
  2. htmlentities() test 14 (default_charset / Shift_JIS)
  3. --INI--
  4. output_handler=
  5. default_charset=Shift_JIS
  6. filter.default=unsafe_raw
  7. --FILE--
  8. <?php
  9. print ini_get('default_charset')."\n";
  10. var_dump(htmlentities("\x81\x41\x81\x42\x81\x43", ENT_QUOTES, ''));
  11. ?>
  12. --EXPECTF--
  13. Shift_JIS
  14. Notice: htmlentities(): Only basic entities substitution is supported for multi-byte encodings other than UTF-8; functionality is equivalent to htmlspecialchars in %s on line %d
  15. string(6) "�A�B�C"