我如何簡單地寫出一個包含真實選項卡的檔案? tab 表示真正的 tab,它不是空格。 tab怎麼寫或真正的tab是什麼字元?
tab
例如這裡:
$chunk = "a,b,c"; file_put_contents("chunk.csv",$chunk);
我應該使用什麼字元來取得 tabs 而不是 逗號 (,) 那裡?
tabs
逗號 (,)
在輸出檔案中,分隔的單字之間應該會有真正的 tabs。
Use \t and enclose the string with double-quotes:
\t
$chunk = "abc\tdef\tghi";
The tab character is \t. Notice the use of " instead of '.
"
'
$chunk = "<html>\t<head>\t\t<title>\t</head>";
PHP 字串 - 雙精確度引用
另外,讓我推薦 fputcsv() 函數,它是用來寫入 CSV 檔案。
Use
\t
and enclose the string with double-quotes:The tab character is
\t
. Notice the use of"
instead of'
.PHP 字串 - 雙精確度引用
另外,讓我推薦 fputcsv() 函數,它是用來寫入 CSV 檔案。