mirror of
https://github.com/php/php-src.git
synced 2025-01-16 00:34:30 +08:00
20 lines
406 B
PHP
20 lines
406 B
PHP
--TEST--
|
||
ob_iconv_handler()
|
||
--SKIPIF--
|
||
<?php include('skipif.inc'); ?>
|
||
--INI--
|
||
unicode.script_encoding=ISO-8859-1
|
||
unicode.output_encoding=ISO-8859-1
|
||
error_reporting=2039
|
||
--FILE--
|
||
<?php
|
||
/* include('test.inc'); */
|
||
iconv_set_encoding('internal_encoding', 'EUC-JP');
|
||
iconv_set_encoding('output_encoding', 'Shift_JIS');
|
||
ob_start('ob_iconv_handler');
|
||
print "丐中丹尹云";
|
||
ob_end_flush();
|
||
?>
|
||
--EXPECT--
|
||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|