Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a csv file i open this file in excel. My csv file contain some arabic character i encode the file with the help of coding i use these code

  $csv = $this->get_csv();
   $csv = chr(255) . chr(254) . mb_convert_encoding($csv, 'UTF-16LE', 'UTF-8');
    header('Content-Length: ' . strlen($csv));

and my output is

ID  user_login  user_nicename   user_email  user_url    user_registered user_status display_name    spam    deleted sent_emails bounced_emails  open_emails click_emails    first_name  last_name
1140,"abdosumsam",""" abdosumsam""","abdosumsam@gmail.com","","0000-00-00 00:00:00","0",""" ???????""","","","","","","",""" ???????""",""
574,"abdoullahhe",""" abdoullahhe""","abdoue2004@gmail.com","","0000-00-00 00:00:00","0",""" abdallah""","","","","","","",""" abdallah""",""
1335,"abdul","abdul","ab@yahoo.com","","2012-07-11 10:33:27","0","abdul","","","","","","","عبدالسلام","الحارثي"
478,"Abdulaziz81",""" abdulaziz81""","amq.banker@gmail.com","","0000-00-00 00:00:00","0",""" abdulaziz""","","","","","","",""" abdulaziz""",""
40,"abdulaziznoghaither",""" abdulaziznoghaither""","hinogh@gmail.com","","0000-00-00 00:00:00","0",""" abdulaziz noghaither""","","","","","","",""" abdulaziz noghaither""",""

i want to remove the comma how i do this. I want this output

id   userlogin    user_name    display_name
12   asdf         ash          asdg
32   asdfg        asff         adfdf

how i achive this output.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.