From:             krynble at yahoo dot com dot br
Operating system: Unix
PHP version:      5.2.9
PHP Bug Type:     Filesystem function related
Bug description:  fgetcsv ignoring special characters

Description:
------------
Problem using fgetcsv ignoring special characters at the begining of a 
string.

The example I had was using the word "ÓTICA" with the "#" character as 
separator.

Reproduce code:
---------------
Consider a file with the following contents: WEIRD#ÓTICA#BEHAVIOR

When using fgetcsv to parse this file, I get an output like this:

Array(
   [0] => WEIRD,
   [1] => TICA,
   [2] => BEHAVIOR
)

Expected result:
----------------
Array(
   [0] => WEIRD,
   [1] => ÓTICA,
   [2] => BEHAVIOR
)

Actual result:
--------------
Array(
   [0] => WEIRD,
   [1] => TICA,
   [2] => BEHAVIOR
)

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

Reply via email to