Skip to main content
Stack Overflow
  1. About
  2. For Teams

Return to Answer

added 26 characters in body
Source Link
GK10
  • 371
  • 4
  • 12

Try this alternative saving as CSV:

$data = "שם פרטי,שם משפחה,עיר\na,b,c\n1,2,3"; // need to use " for \n
file_put_contents("myexcel.csv","\xEF\xBB\xBF"); // BOM with UTF-8 to csv
file_put_contents("myexcel.csv",$data,FILE_APPEND); // add more data

Hope it helps.

Try this:

$data = "שם פרטי,שם משפחה,עיר\na,b,c\n1,2,3"; // need to use " for \n
file_put_contents("myexcel.csv","\xEF\xBB\xBF"); // BOM with UTF-8 to csv
file_put_contents("myexcel.csv",$data,FILE_APPEND); // add more data

Hope it helps.

Try this alternative saving as CSV:

$data = "שם פרטי,שם משפחה,עיר\na,b,c\n1,2,3"; // need to use " for \n
file_put_contents("myexcel.csv","\xEF\xBB\xBF"); // BOM with UTF-8 to csv
file_put_contents("myexcel.csv",$data,FILE_APPEND); // add more data

Hope it helps.

Source Link
GK10
  • 371
  • 4
  • 12

Try this:

$data = "שם פרטי,שם משפחה,עיר\na,b,c\n1,2,3"; // need to use " for \n
file_put_contents("myexcel.csv","\xEF\xBB\xBF"); // BOM with UTF-8 to csv
file_put_contents("myexcel.csv",$data,FILE_APPEND); // add more data

Hope it helps.

lang-php

AltStyle によって変換されたページ (->オリジナル) /