共计 751 个字符,预计需要花费 2 分钟才能阅读完成。
在 PHP 中处理 Excel 文件可以使用 PHPExcel 或 PhpSpreadsheet 这两个库。以下是使用 PhpSpreadsheet 库处理 Excel 文件并获取数据的示例代码:
<?php
require 'vendor/autoload.php'; // 引入 PhpSpreadsheet 库
use PhpOffice\PhpSpreadsheet\IOFactory;
// 导入 Excel 文件
$spreadsheet = IOFactory::load('example.xlsx');
$sheet = $spreadsheet->getActiveSheet();
// 获取数据
$data = [];
foreach ($sheet->getRowIterator() as $row) {$rowData = [];
$cellIterator = $row->getCellIterator();
$cellIterator->setIterateOnlyExistingCells(FALSE); // 忽略空单元格
foreach ($cellIterator as $cell) {$rowData[] = $cell->getValue();}
$data[] = $rowData;
}
// 输出数据
echo '<pre>';
print_r($data);
echo '</pre>';
?>
在上面的示例中,首先引入 PhpSpreadsheet 库,然后使用 IOFactory::load 方法导入 Excel 文件。接着遍历每一行并获取每个单元格的数据,最后输出数据。
需要注意的是,要先使用 Composer 安装 PhpSpreadsheet 库,然后在代码中引入库文件。
丸趣 TV 网 – 提供最优质的资源集合!
正文完