|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-12-11 21:16 UTC] bin at webcandy dot at
[2018-03-11 23:12 UTC] cmb@php.net
-Status: Open
+Status: Verified
[2018-03-11 23:12 UTC] cmb@php.net
[2018-08-25 15:38 UTC] cmb@php.net
-Assigned To:
+Assigned To: cmb
[2018-08-25 15:54 UTC] cmb@php.net
[2018-08-25 15:54 UTC] cmb@php.net
-Status: Verified
+Status: Closed
[2018-11-13 22:17 UTC] shafer_w2002 at yahoo dot com
[2018-11-13 22:31 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 12:00:02 2025 UTC |
Description: ------------ If the string $text passed to iconv_mime_decode($text) does contain special characters (tested with ä, ü and ß), it will just return an empty character for these characters. In my opinion it iconv_mime_decode should leave special characters as they are as long as they're not encoded via Q-encoding. Tested on Windows 7 and Debian. iconv.output_encoding is set to "UTF-8" Test script: --------------- <?php var_dump(iconv_mime_decode('ä')); var_dump(iconv_mime_decode('ö')); var_dump(iconv_mime_decode('ß')); ?> Expected result: ---------------- string(1) "ä" string(1) "ö" string(1) "ß" Actual result: -------------- string(0) "" string(0) "" string(0) ""