From:             
Operating system: Windows 7
PHP version:      Irrelevant
Package:          ICONV related
Bug Type:         Bug
Bug description:iconv_mime_decode does ignore special characters

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) ""

-- 
Edit bug report at https://bugs.php.net/bug.php?id=60494&edit=1
-- 
Try a snapshot (PHP 5.4):            
https://bugs.php.net/fix.php?id=60494&r=trysnapshot54
Try a snapshot (PHP 5.3):            
https://bugs.php.net/fix.php?id=60494&r=trysnapshot53
Try a snapshot (trunk):              
https://bugs.php.net/fix.php?id=60494&r=trysnapshottrunk
Fixed in SVN:                        
https://bugs.php.net/fix.php?id=60494&r=fixed
Fixed in SVN and need be documented: 
https://bugs.php.net/fix.php?id=60494&r=needdocs
Fixed in release:                    
https://bugs.php.net/fix.php?id=60494&r=alreadyfixed
Need backtrace:                      
https://bugs.php.net/fix.php?id=60494&r=needtrace
Need Reproduce Script:               
https://bugs.php.net/fix.php?id=60494&r=needscript
Try newer version:                   
https://bugs.php.net/fix.php?id=60494&r=oldversion
Not developer issue:                 
https://bugs.php.net/fix.php?id=60494&r=support
Expected behavior:                   
https://bugs.php.net/fix.php?id=60494&r=notwrong
Not enough info:                     
https://bugs.php.net/fix.php?id=60494&r=notenoughinfo
Submitted twice:                     
https://bugs.php.net/fix.php?id=60494&r=submittedtwice
register_globals:                    
https://bugs.php.net/fix.php?id=60494&r=globals
PHP 4 support discontinued:          
https://bugs.php.net/fix.php?id=60494&r=php4
Daylight Savings:                    https://bugs.php.net/fix.php?id=60494&r=dst
IIS Stability:                       
https://bugs.php.net/fix.php?id=60494&r=isapi
Install GNU Sed:                     
https://bugs.php.net/fix.php?id=60494&r=gnused
Floating point limitations:          
https://bugs.php.net/fix.php?id=60494&r=float
No Zend Extensions:                  
https://bugs.php.net/fix.php?id=60494&r=nozend
MySQL Configuration Error:           
https://bugs.php.net/fix.php?id=60494&r=mysqlcfg

Reply via email to