我有一个 php 应用程序,它需要在代码点火器框架之外尽可能少地处理许多 php 配置。
我现在有一个使用 .csv 文件的导入功能。csv 很好,好像是跨平台的。但是人们在使用excel时遇到了麻烦。它也无法正确显示中文字符。
然后是 .xls 和 .xlsx 文件。有这些库,但通常需要 php_zip
我应该选择哪个选项适用于许多 php 安装并且有利于显示和导入?
There's no way you'll read an .xlsx file without unzipping it, which means you'll need a zip lib.
PHPExcel handles several formats of excel files, but it can be a bit resource hungry.
XLSX2CSV is less resource intensive, but only reads one page of multi-page worksheets, doesn't read parse formulas and doesn't handle .xls files.
导出到 CSV 时可能会丢失信息。
它只会保存单元格的值 - 而不是它们的格式信息。