mirror of
https://github.com/php/php-src.git
synced 2026-04-23 16:08:35 +02:00
18 lines
342 B
PHP
18 lines
342 B
PHP
--TEST--
|
|
ob_iconv_handler()
|
|
--SKIPIF--
|
|
<?php /* include('skipif.inc'); */ ?>
|
|
--INI--
|
|
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--
|
|
�����
|