Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 972759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T03:10:27+00:00 2026-05-16T03:10:27+00:00

I have been looking into the php fputcsv function, and have heard some comments

  • 0

I have been looking into the php fputcsv function, and have heard some comments that the files created using this method will not work on microsoft excel, is this correct?

Comment on php.net

since PHP is generally *nix-based, it
makes sense that the line endings are
always \n instead of \r\n. However,
certain Microsoft programs (I’m
looking at you, Access 97), will fail
to recognize the CSV properly unless
each line ends with \r\n. Secondly, if
the first column heading / value of
the CSV file begins with uppercase ID,
certain Microsoft programs (ahem,
Excel 2007) will interpret the file as
being in the SYLK format rather than
CSV, as described here:
http://support.microsoft.com/kb/323626

So

If i am planning on outputting data in the format of

0, 0278221234, 60143512345, 5pt code, yes
1, 0278221234, 60143512345, 5pt code, yes
2, 0278221234, 60143512345, 5pt code, yes
3, 0278221234, 60143512345, 5pt code, yes

also,

what is the difference between writing a file using this function

and simply creating the line’s as above and ending them with \r\n ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T03:10:28+00:00Added an answer on May 16, 2026 at 3:10 am

    files created using this method will not work on microsoft excel, is this correct?

    This is partially correct. MS Excel can read the files fine when the user uses the import wizard. But you’ll want that the files to work without user knowing how you’ve made them — that is, without using the import wizard.

    To make the files work automatically, use ; (semicolon) as a record separator. E.g.

    $data = array("one", "two", "three");
    $fh = fopen('test.csv', 'w');
    fputcsv($fh, $data, ";");
    fclose($fh);
    

    Also note that in order to write UTF-8 to the CSV you’ll have to add UTF-8 BOM to the beginning of the file.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some strings that have been encrypted using the PHP function crypt() .
I have been looking into AWS spot instances for some jobs however instead of
I have been looking into packages that would enable me to have tabs in
I have been using PHP for quite some time now and was wondering what
I am an experienced PHP programmer, but I have been looking into Ruby lately,
i have been looking into this for a bit now and have become stuck.
I have been looking into this for hours and still at a loss. I
I have been looking into backbone.js and I can't seem to figure out how
I have been looking into CruiseControl configuration recently (I'm a complete CC noob) and
I have been looking into different systems for creating a fast cache in a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.