mirror of
https://github.com/php/php-src.git
synced 2026-04-29 03:03:26 +02:00
19 lines
379 B
PHP
19 lines
379 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
|
|
iconv_set_encoding('internal_encoding', 'EUC-JP');
|
|
iconv_set_encoding('output_encoding', 'Shift_JIS');
|
|
ob_start('ob_iconv_handler');
|
|
print "丐中丹尹云";
|
|
ob_end_flush();
|
|
?>
|
|
--EXPECT--
|
|
�����
|