84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
我如何簡單地寫出一個包含真實選項卡的檔案? 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 檔案。