我正在尝试将*.xlsb
文件转换为php array
或*.csv
文件(或至少*.xls
)。我尝试使用PHPExcel
,但看起来无法识别此文件中的内容。
我注意到,您可以将*.xlsb
文件重命名为*.zip
文件,然后使用命令行unzip *.zip
将其解压缩。在此之后,您将获得包含sheet1.bin
文件的下一个文件夹:
看起来这个文件应该包含Excel单元格值,但我仍然无法使用PHPExcel
对其进行解析。有人可以帮助我甚至可以解析*.xlsb
个文件并从中获取信息吗?或者也许可以解析这个sheet1.bin
文件?
答案 0 :(得分:2)
PHPExcel不支持XLSB文件。 XLSB文件格式是一个zip存档,与XLSX相同,但存档中的大多数文件都是二进制文件。二进制文件不容易解析。
支持XLSB文件的PHP Excel库是EasyXLS。您可以从here下载该库。
将XLSB转换为PHP数组
//Code for reading xlsb file
$workbook = new COM("EasyXLS.ExcelDocument");
$workbook->easy_LoadXLSBFile("file.xlsb");
//Code for building the php array
$xlsTable = $workbook->easy_getSheetAt(0)->easy_getExcelTable();
for ($row=0; $row<$xlsTable->RowCount(); $row++)
{
for ($column=0; $column<$xlsTable->ColumnCount(); $column++)
{
$value = $xlsTable->easy_getCell($row, $column)->getValue();
//transfer $value into your array
}
}
或
//Code for reading xlsb file
$workbook = new COM("EasyXLS.ExcelDocument");
$rows = $workbook->easy_ReadXLSBActiveSheet_AsList("file.xlsb");
//Code for building the php array
for ($rowIndex=0; $rowIndex<$rows->size(); $rowIndex++)
{
$row = $rows->elementAt($rowIndex);
for ($cellIndex=0; $cellIndex<$row->size(); $cellIndex++)
{
$value = $row->elementAt($cellIndex);
//transfer $value into your array
}
}
将XLSB转换为CSV
//Code for reading xlsb file
$workbook = new COM("EasyXLS.ExcelDocument");
$workbook->easy_LoadXLSBFile("file.xlsb");
//Code for converting to CSV
$workbook->easy_WriteCSVFile("file.csv", $workbook->easy_getSheetAt(0)->getSheetName());
将XLSB转换为XLS
//Code for reading xlsb file
$workbook = new COM("EasyXLS.ExcelDocument");
$workbook->easy_LoadXLSBFile("file.xlsb");
//Code for converting to XLS
$workbook->easy_WriteXLSFile("file.xls");