gh7953.phpt 307 B

12345678910111213141516171819
  1. --TEST--
  2. GH-7953 (ob_clean() only may not set Content-* header)
  3. --EXTENSIONS--
  4. iconv
  5. --INI--
  6. input_encoding=UTF-8
  7. output_encoding=ISO-8859-1
  8. --CGI--
  9. --FILE--
  10. <?php
  11. ob_start('ob_iconv_handler');
  12. ob_clean();
  13. echo 'Hello World';
  14. ?>
  15. --EXPECTF--
  16. %a
  17. --EXPECTHEADERS--
  18. Content-Type: text/html; charset=ISO-8859-1