xref: /PHP-8.0/ext/iconv/tests/gh7953.phpt (revision 9bd468da)
1--TEST--
2GH-7953 (ob_clean() only may not set Content-* header)
3--SKIPIF--
4<?php
5if (!extension_loaded("iconv")) die("skip iconv extension not available");
6?>
7--INI--
8input_encoding=UTF-8
9output_encoding=ISO-8859-1
10--CGI--
11--FILE--
12<?php
13ob_start('ob_iconv_handler');
14ob_clean();
15
16echo 'Hello World';
17?>
18--EXPECTF--
19%a
20--EXPECTHEADERS--
21Content-Type: text/html; charset=ISO-8859-1
22