gpt4 book ai didi

php - 如何使用 php 将 *.xlsb 转换为数组或 *.csv

转载 作者:行者123 更新时间:2023-12-04 03:05:02 24 4
gpt4 key购买 nike

我正在尝试将 *.xlsb 文件转换为 php 数组*.csv 文件(或至少是 *. xls).我尝试使用 PHPExcel,但它似乎无法识别此文件中的内容。

我注意到,您可以将 *.xlsb 文件重命名为 *.zip 文件,然后使用命令行 unzip *.zip 将其解压缩>。在此之后,您将获得包含 sheet1.bin 文件的下一个文件夹:

enter image description here

看起来这个文件应该包含 Excel 单元格值,但我仍然无法使用 PHPExcel 解析它。有人可以帮我分析 *.xlsb 文件并从中获取信息吗?或者也许可以解析此 sheet1.bin 文件?

最佳答案

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");

关于php - 如何使用 php 将 *.xlsb 转换为数组或 *.csv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45370957/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com