mirror of
https://github.com/php/php-src.git
synced 2024-12-16 05:15:03 +08:00
14 lines
515 B
PHP
14 lines
515 B
PHP
--TEST--
|
|
Bug #53304 (quot_print_decode does not handle lower-case hex digits)
|
|
--SKIPIF--
|
|
<?php extension_loaded('iconv') or die('skip iconv extension is not available'); ?>
|
|
--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
|