ID:               40811
 Comment by:       nospam at earth dot net
 Reported By:      websites at mtu-net dot ru
 Status:           No Feedback
 Bug Type:         Filesystem function related
 Operating System: Linux
 PHP Version:      5.2.1
 New Comment:

code to reproduce the bug:

<?php

// setlocale(LC_ALL, 'ru_RU.cp1251');

$row = 1;
$handle = fopen("p.csv", "r");
while (($data = fgetcsv($handle, 1000, ";")) !== FALSE) {
    $num = count($data);
    echo "<p> $num fields in line $row: <br /></p>\n";
    $row++;
    for ($c=0; $c < $num; $c++) {
    echo $data[$c] . "<br />\n";
    }
}
fclose($handle);
?>


Previous Comments:
------------------------------------------------------------------------

[2008-05-13 10:28:17] great_boba at yahoo dot com

Try to use setlocale

------------------------------------------------------------------------

[2007-03-23 01:00:01] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".

------------------------------------------------------------------------

[2007-03-15 13:01:54] [EMAIL PROTECTED]

Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.



------------------------------------------------------------------------

[2007-03-15 08:33:18] websites at mtu-net dot ru

Description:
------------
When opening an .csv-file with fgetcsv() most part of cyrillic
(win-1251) characters disappears, and they are returned as an empty
string in returned list. Everything's OK with latin characters.

Reproduce code:
---------------
$fp=fopen("csv.csv","r");
while ($arr=fgetcsv($fp, 1000, ";"))
 {
  *here comes a bunch of outputs*

Expected result:
----------------
Expected: all strings neatly packed in a list =)

Actual result:
--------------
Result: almost all string fields in a list are empty


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=40811&edit=1

Reply via email to