我想使用php从excel导入,excel来自我的代码点火器,当前单元格包含当前文本
cell1 | cell2 |
---|---|
A | 1 |
B | 2 |
C | 3 |
我以前从未使用过phpexcel,但如果它是数组,并且考虑到$cell1是字符串/文本,我想你可以尝试使用这个:
for($row=2; $row<=$highestRow; $row++)
{
$cell1= $worksheet->getCellByColumnAndRow(0, $row)->getValue();
$cell2= $worksheet->getCellByColumnAndRow(1, $row)->getValue();
//cell value you want to hide
if ($cell1 == 'B') {
$cell1 = 'xxx'; //overwrite that value into something
}
$temp_data[] = array(
'cell1' => $cell1,
'cell2' => $cell2,
);
}
注意:我使用的是codeigniter 3