Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 PHP 上的 fputcsv 将一些数据导出到 Excel 工作表。我知道 .csv 文件不支持样式。如果有什么方法可以通过将文件保存为 .xls 来为该文件添加样式?
CSV 和 XLS 格式完全不同。所以如果你想添加样式,你必须创建一个 XLS 文件(忘记fputcsv:/ )。
fputcsv
看看PhpExcel。