How do i simply write out a file including real tabs inside? tab means real tab which is not the spaces. How to write the tab or what is the character for real tab?
For example here:
$chunk = "a,b,c";
file_put_contents("chunk.csv",$chunk);
What character should i use to get tabs instead of Commas (,) there?
In the output file, there should be real tabs between the seperated words.
- Real Tabs means, a true wide space we get when we press the
<tab>key in a text-editor.
The tab character is
\t. Notice the use of"instead of'.PHP Strings – Double quoted
Also, let me recommend the fputcsv() function which is for the purpose of writing CSV files.