16

I have a simple CSV file being generated that includes foreign characters. I've noted that if I don't include a Byte Order Mark that the foreign characters aren't appearing properly in Excel (but they appear fine when a BOM is present).

How can I add a BOM to the beginning of the file when it's first created? I've tried the following and it's not working :-/

function processForm($competition, $competitionEntry) {
    $BOM = "\xEF\xBB\xBF"; // UTF-8 BOM

    $filename = $competition->ID.".csv";
    $file = "entries/".$filename;     

    $fields = array_keys($competitionEntry);
    $submittedForm = $competitionEntry;

    if(file_exists($file)) {
        $fp = fopen($file, 'a');
        if($fp && 
            fputcsv($fp, $submittedForm) && 
            fclose($fp)) {
            return true;
        } 
    } else { // CREATE NEW FILE
        $fp = fopen($file, 'w');
        if($fp && 
            fputcsv($fp, $BOM) && // WRITE BOM TO FILE   
            fputcsv($fp, $fields) &&
            fputcsv($fp, $submittedForm) &&
            fclose($fp)) {     
            return true;
        } 
    }
    return false;
}
2
  • 5
    fwrite() $BOM to the file immediately after your fopen() (though not a good idea in your append).... don't use fputcsv() to try and write it Commented Sep 5, 2014 at 12:43
  • @MarkBaker If you want to put that into an answer I'll accept it. It worked a treat. Otherwise I'll do it later. Let me know. Commented Sep 5, 2014 at 13:05

1 Answer 1

33

Thanks to Mark Baker for this answer:

I needed to use fwrite() to add the BOM, not fputcsv().

The working version looks like this:

if(file_exists($file)) {
    $fp = fopen($file, 'a');
    if($fp && 
        fputcsv($fp, $submittedForm) && 
        fclose($fp)) {
        return true;
    } 
} else {
    $fp = fopen($file, 'w');
    fwrite($fp, $BOM); // NEW LINE
    if($fp &&    
        fputcsv($fp, $fields) &&
        fputcsv($fp, $submittedForm) &&
        fclose($fp)) {     
        return true;
    } 
}

Thanks, Mark!

Sign up to request clarification or add additional context in comments.

1 Comment

thank you, it works. // NEW LINE comment is misleading as BOM does not count as a new line

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.