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.