mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
12 lines
348 B
PHP
12 lines
348 B
PHP
--TEST--
|
||
GH-9683 (Problem when ISO-2022-JP-MS is specified in mb_ encode_mimeheader)
|
||
--EXTENSIONS--
|
||
mbstring
|
||
--FILE--
|
||
<?php
|
||
|
||
echo mb_decode_mimeheader(mb_encode_mimeheader('1234567890123456789012', 'ISO-2022-JP-MS', 'B'));
|
||
?>
|
||
--EXPECT--
|
||
1234567890123456789012
|