使用phpExcel读取文件时删除隐藏的行?

时间:2016-07-20 00:34:12

标签: php codeigniter phpexcel

使用toArray方法使用phpExcel读取工作表时,也会解析隐藏的行。

在toArray删除隐藏行之前是否有可以使用的方法?

到目前为止,使用Codeigniter

的代码
$this->load->library('excel');
$objPHPExcel = PHPExcel_IOFactory::load($upload_data['full_path']);

foreach ($objPHPExcel->getAllSheets() as $sheet) {
    $sheets[$sheet->getTitle()] = $sheet->toArray();
}

$data = array();
foreach ($sheets['Data'] as $key => $row) {
    if ($key > 0) {
        $item = array();
        $item['name'] = $row[1];
        $item['code'] = $row[2];
        $data[] = $item;
    }
}

1 个答案:

答案 0 :(得分:3)

使用PHPExcel_Worksheet::toArray将工作表转换为数组时,您将获得所有行,无论它们是否可见。

如果您只想过滤可见行,则必须遍历行并检查每个行是否可见。您可以使用

检查行的可见性
$sheet->getRowDimension($row_id)->getVisible()
  

$row_id以1(而不是0)开头,同样在excel

以下是如何在代码中使用它的示例。我改变了Data工作表的方式,因为您不需要遍历工作表,您可以使用getSheetByName函数获取该特定工作表。

$data_sheet = $objPHPExcel->getSheetByName('Data');
$data_array = $data_sheet->toArray();
$data = [];

foreach ($data_sheet->getRowIterator() as $row_id => $row) {
    if ($data_sheet->getRowDimension($row_id)->getVisible()) {
        // I guess you don't need the Headers row, note that now it's row number 1
        if ($row_id > 1) { 
            $item = array();
            $item['name'] = $data_array[$row_id-1][1];
            $item['code'] = $data_array[$row_id-1][2];
            $data[] = $item;
        }
    }
}