mirror of
https://github.com/php/php-src.git
synced 2026-04-20 22:41:20 +02:00
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
18 lines
445 B
PHP
18 lines
445 B
PHP
--TEST--
|
|
Bug #53891 (iconv_mime_encode() fails to Q-encode UTF-8 string)
|
|
--EXTENSIONS--
|
|
iconv
|
|
--FILE--
|
|
<?php
|
|
$preferences = array(
|
|
'scheme' => 'Q',
|
|
'input-charset' => 'utf-8',
|
|
'output-charset' => 'utf-8',
|
|
'line-length' => 74,
|
|
'line-break-chars' => "\r\n",
|
|
);
|
|
var_dump(iconv_mime_encode('subject', "d obeybiubrsfqllpdtpge…", $preferences));
|
|
?>
|
|
--EXPECT--
|
|
string(54) "subject: =?utf-8?Q?d=20obeybiubrsfqllpdtpge=E2=80=A6?="
|