I'm trying to create a CSV file using php. How can I print non ascii charaters?

Thanks in advance, Best regards!

link|improve this question

44% accept rate
What's the bounty for - you specifically don't want a fputcsv solution? – Rup Sep 3 '10 at 11:11
I rather prefer to identify the problem of my current solution. Later, I will post some of my current code. I am using symfony as framework. – Rui Gonçalves Sep 3 '10 at 13:09
feedback

6 Answers

up vote 7 down vote accepted

It is possible to use unicode characters in CSV-files, just make sure you use the right HTTP-headers. This works great in OpenOffice, but if I remember right Excel has some problems displaying CSV-files with unicode characters.

Furthermore you should try to use fputcsv, it makes things easier. When you are creating files on the fly, you can use the php output stream.

So something like this:

$handle = fopen("php://output", "w");

header("Content-Type: text/csv; charset=UTF-8");
fputcsv($handle, $fields, ';', '"');

fclose($handle);

EDIT
After reading your comments it seems you have problems converting htmlentities like é. To convert these entities you have to make sure every field is decoded. You can do this with html_entity_decode like this:

$decoded_string = html_entity_decode($string, ENT_QUOTES, 'UTF-8');

Btw, most of the time it's not a good idea to store text with htmlentities in a database, because when you don't want to output html (like in this case) you have to convert them back to real characters. It's easier to just store the text as unicode.

link|improve this answer
+1 for the php output stream link. – Byron Whitlock Aug 27 '10 at 17:52
feedback

fputcsv should handle utf-8.

link|improve this answer
Hi! The csv file is being generated on-the-fly and not through a file pointer. The header is sent through the header() php instruction and each record is dynamically added through echo(). Best regards! – Rui Gonçalves Aug 26 '10 at 17:37
2  
Rui: you can still generate the file on-the-fly with fputcsv('php://output') infact, this is a much better way of creating CSV files in PHP than by concatenating strings. – Marc Gear Sep 3 '10 at 10:51
feedback

Here is what I use, I am sure it could use a little refining for your situation but overall very generic and very useful for many situations.

You just feed the function your sql and it will spit out a csv with a header line of the column names.

<?php
function exportMysqlToCsv($csvsql,$filename = 'export.csv')
{
    $csv_terminated = "\n";
    $csv_separator = ",";
    $csv_enclosed = '"';
    $csv_escaped = "\\";
    $sql_query = $csvsql;

    // Gets the data from the database
    $result = mysql_query($sql_query);
    $fields_cnt = mysql_num_fields($result);


    $schema_insert = '';

    for ($i = 0; $i < $fields_cnt; $i++)
    {
        $l = $csv_enclosed . str_replace($csv_enclosed, $csv_escaped . $csv_enclosed,
            stripslashes(mysql_field_name($result, $i))) . $csv_enclosed;
        $schema_insert .= $l;
        $schema_insert .= $csv_separator;
    } // end for

    $out = trim(substr($schema_insert, 0, -1));
    $out .= $csv_terminated;

    // Format the data
    while ($row = mysql_fetch_array($result))
    {
        $schema_insert = '';
        for ($j = 0; $j < $fields_cnt; $j++)
        {
            if ($row[$j] == '0' || $row[$j] != '')
            {

                if ($csv_enclosed == '')
                {
                    $schema_insert .= $row[$j];
                } else
                {
                    $meta = mysql_fetch_field($result, $j);
                    if($meta->type == "int" || $meta->type == "real")
                    {
                      $schema_insert .= $row[$j];
                    } else {
                      $schema_insert .= $csv_enclosed . str_replace($csv_enclosed, $csv_escaped . $csv_enclosed, $row[$j]) . $csv_enclosed;
                    }
                }
            } else
            {
                $schema_insert .= '';
            }

            if ($j < $fields_cnt - 1)
            {
                $schema_insert .= $csv_separator;
            }
        } // end for

        $out .= $schema_insert;
        $out .= $csv_terminated;
    } // end while

    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header("Content-Length: " . strlen($out));
    // Output to browser with appropriate mime type, you choose ;)
    header("Content-type: text/x-csv");
    //header("Content-type: text/csv");
    //header("Content-type: application/csv");
    header("Content-Disposition: attachment; filename=$filename");
    echo $out;
    exit;

} 
?>
link|improve this answer
feedback

As you say, they are generated on-the-fly (i.e. you're using echo etc to directly output them), then following will help:

1) Add this header at very beginning of your PHP code:

 header ('Content-type: text/csv; charset=utf-8');

2) Add this meta in the HTML code:

 <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">

3) Save your PHP code file as UTF-8 without BOM.

link|improve this answer
Hi! Still not working. All the non-ascii-chars are being displayed as html entities (é as &eacute;, for example). Best regards. – Rui Gonçalves Aug 26 '10 at 17:52
surely header ('Content-type: text/csv; charset=utf-8') is what you want if you are outputting CSV? – Dai Sep 3 '10 at 11:05
@Rui, why not use htmlentities_decode() then ? – shamittomar Sep 6 '10 at 7:47
feedback

When you select the page info for the web page, check what is the file encoding. Its should be UTF-8. If not, the data that you are outputting is non UTF.
Also please what Character encoding your browser has set. In Firefox its in menu->view->character encoding.

link|improve this answer
The character encoding of Firefox is set to UTF-8. The php source file is also UTF-8. – Rui Gonçalves Sep 6 '10 at 17:48
Before you echo the csv string in your php script can you do an mb_check_encoding (php.net/manual/en/function.mb-check-encoding.php) Try mb_check_encoding($csvString, 'UTF-8'); – Jithin Sep 7 '10 at 0:15
Also if you find that the encoding of string is not UTF-8, you can try using mb_convert_encoding (php.net/manual/en/function.mb-convert-encoding.php) – Jithin Sep 7 '10 at 0:36
feedback

actually shamittomar's answer is very nice but it miss one thing

your problem is related to your encoding
you should convert your text encoding to UTF-8 since php using ascii internally

example :

$str = mb_convert_encoding($str , "UTF-8") ; 

consult the php.net for more information

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.