mirror of
https://github.com/php/php-src.git
synced 2026-04-22 23:48:14 +02:00
e9f783fcdd
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
14 lines
441 B
PHP
14 lines
441 B
PHP
--TEST--
|
|
Bug #53304 (quot_print_decode does not handle lower-case hex digits)
|
|
--EXTENSIONS--
|
|
iconv
|
|
--FILE--
|
|
<?php
|
|
echo iconv_mime_decode('=?utf-8?Q?Nachricht_=c3=bcber_Kontaktformular_www.inexio.net?=', 0, 'UTF-8') . "\n";
|
|
echo iconv_mime_decode('=?utf-8?Q?Nachricht_=C3=BCber_Kontaktformular_www.inexio.net?=', 0, 'UTF-8') . "\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
Nachricht über Kontaktformular www.inexio.net
|
|
Nachricht über Kontaktformular www.inexio.net
|