each cell must have key "r" for example = "A1","B14",...
ms office fix it before open file, but it is an error
may be you will fix it in ExcelWorksheet.php line 165-177
/** * Generate and return a new empty row within the sheetData * * @return \DOMElement */ protected function getNewRow() { /*$sheetData = $this->getSheetData(); $row = $this->append('row', array(), $sheetData); $row->setAttribute('r', $this->rowCounter++); return $row;*/ $this->rows[] = array(); return count($this->rows)-1; }
each cell must have key "r" for example = "A1","B14",...
ms office fix it before open file, but it is an error
may be you will fix it in ExcelWorksheet.php line 165-177
/** * Generate and return a new empty row within the sheetData * * @return \DOMElement */ protected function getNewRow() { /*$sheetData = $this->getSheetData(); $row = $this->append('row', array(), $sheetData); $row->setAttribute('r', $this->rowCounter++); return $row;*/ $this->rows[] = array(); return count($this->rows)-1; }