mirror of
https://github.com/php/php-src.git
synced 2026-04-27 01:48:26 +02:00
Added a test case for ob_iconv_handler()
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
--TEST--
|
||||
ob_output_handler
|
||||
--SKIPIF--
|
||||
<?php include('skipif.inc'); ?>
|
||||
--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--
|
||||
あいうえお
|
||||
Reference in New Issue
Block a user