列之间的 Phpspreadsheet 搜索
Phpspreadsheet Search Between Columns
这是我的代码。
$highestColumn++;
for ($row = 1; $row <= $highestRow; $row++) {
for ($col = 'A'; $col != $highestColumn; ++$col) {
$val = $sheet2->getCell($col . $row)->getValue();
if($col < 'D'){
//something
}
}}
在 if 中,我得到 A、B、C 列并得到其他 'AA' 'BB' 'CC' 'CB' ... 等等。这是错误的我的解决方案。这种情况有什么办法吗?我只想在 if.
中查看 A、B、C 列
我是这样解决问题的:
$sheet->rangeToArray('BU3:CA3')[0];
这是我的代码。
$highestColumn++;
for ($row = 1; $row <= $highestRow; $row++) {
for ($col = 'A'; $col != $highestColumn; ++$col) {
$val = $sheet2->getCell($col . $row)->getValue();
if($col < 'D'){
//something
}
}}
在 if 中,我得到 A、B、C 列并得到其他 'AA' 'BB' 'CC' 'CB' ... 等等。这是错误的我的解决方案。这种情况有什么办法吗?我只想在 if.
中查看 A、B、C 列我是这样解决问题的:
$sheet->rangeToArray('BU3:CA3')[0];