gpt4 book ai didi

PhpSpreadsheet foreach 循环遍历多个工作表

转载 作者:行者123 更新时间:2023-12-01 18:03:00 31 4
gpt4 key购买 nike

我是 PhpSpreadsheet 的新手,我有一个包含多个工作表的文件(全部相同),我检查了 Reader 中的所有示例文档部分,但每个示例都以类似的代码结尾

$sheetData = $spreadsheet->getActiveSheet()->toArray(null, true, true, true);

看来我只能从事件工作表中获取数据。我想循环遍历每张纸以从每张纸中获取数据,例如:

foreach ($sheetData as $sheet) { 
echo "...my data ...";
}

有什么想法吗?我错过了什么吗?谢谢

最佳答案

您需要使用 getSheetCount() 方法来确定有多少个工作表,然后使用带有 getSheet() 的标准 for 循环:

$sheetCount = $spreadsheet->getSheetCount();
for ($i = 0; $i < $sheetCount; $i++) {
$sheet = $spreadsheet->getSheet($i);
$sheetData = $sheet->toArray(null, true, true, true);
}

请参阅Worksheet documentation .

关于PhpSpreadsheet foreach 循环遍历多个工作表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52007144/

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