$column = str_replace(',',' ', $rows[address]);
$column = addslashes($column);
$column = str_replace("\n", " ",$column);
$contents.= $column."\t";
$contents.="\n";
}
header("Content-type: application/ms-excel");
header("Content-Disposition: attachment; filename=Confirmed.xls");
print $contents;
如何把地址欄,而無需更換「/ N」,因爲它是一個地址字段我想表明它在細胞的一個好辦法...取代「收益」使我的地址在單行中。PHP代碼生成Excel和硬進入
養成使用PHP的內置fputcsv()函數讓你的生活變得輕鬆的習慣 –
我正在看它......但我能記得我有問題,因爲我的領域有逗號... – user1854007