8

我使用库PHPExcel 1.7.9来处理Excel文件。首先,我创建一个模板,对其进行样式化和润色。然后,为了避免样式硬编码,我使用上面提到的库打开该模板,更改一些值并将其保存为新.xlsx文件。

首先,我们从单元格中获取该样式。

$this->styles = array() ;
$this->styles['category'] = $sheet->getStyle("A4");
$this->styles['subcategory'] = $sheet->getStyle("A5");

这是递归函数,它显示类别和子类别。

private function displayCategories($categories, &$row, $level = 0){
    $sheet = $this->content ;

    foreach($categories as $category){
        if ($category->hasChildren() || $category->hasItems()){ //Check if the row has changed.
            $sheet->getRowDimension($row)->setRowHeight(20);
            $sheet->mergeCells(Cell::NUMBER . $row . ":" . Cell::TOTAL . $row) ;

            $name = ($level == 0) ? strtoupper($category->name) : str_repeat(" ", $level*6) ."- {$category->name}" ;
            $sheet->setCellValue(Cell::NUMBER . $row, $name) ;
            $sheet->duplicateStyle((($level == 0) ?  $this->styles['category'] : $this->styles['subcategory']), Cell::NUMBER . $row);

            $row++ ;
            if ($category->hasChildren()){
                $this->displayCategories($category->children, $row, $level+1);
            }
        }
    }   
}

问题

如果$sheet->duplicateStyle()使用,由于无限递归,将无法保存文档。

已达到“200”的最大函数嵌套级别,正在中止!<- 致命错误

问题在于下一段代码,在PHPExcel_Style_Fill类内部,一个对象一遍又一遍地引用自己。

public function getHashCode() { //class PHPExcel_Style_Fill
    if ($this->_isSupervisor) { 
        var_dump($this === $this->getSharedComponent()); //Always true 200 times
        return $this->getSharedComponent()->getHashCode();
    }
    return md5(
          $this->getFillType()
        . $this->getRotation()
        . $this->getStartColor()->getHashCode()
        . $this->getEndColor()->getHashCode()
        . __CLASS__
    );
}

有什么办法可以解决这个问题吗?我也会接受关于如何将一个单元格的完整样式应用于另一个单元格的任何想法。


解决方案:

正如@MarkBaker 在评论中所说,developGitHub 上的分支确实包含对该错误的修复。

4

2 回答 2

3

编辑我添加了一个带有修复的拉取请求:https ://github.com/PHPOffice/PHPExcel/pull/251

当您尝试将单元格的样式复制到同一个单元格时,就会发生这种情况;看看这个:

$phpe = new PHPExcel();
$sheet = $phpe->createSheet();

$sheet->setCellValue('A1', 'hi there') ;
$sheet->setCellValue('A2', 'hi again') ;

$sheet->duplicateStyle($sheet->getStyle('A1'), 'A2');

$writer = new PHPExcel_Writer_Excel2007($phpe);
$writer->save('./test.xlsx');

它会工作得很好。但是,如果我添加这样的另一行:

$sheet->duplicateStyle($sheet->getStyle('A1'), 'A1');

save然后砰,调用方法后无限递归开始

要修复您的代码,您应该修改此部分:

$sheet->duplicateStyle((($level == 0) ?  $this->styles['category'] : $this->styles['subcategory']), Cell::NUMBER . $row);

类似于以下内容:

$style = ($level == 0) ?  $this->styles['category'] : $this->styles['subcategory'];
$targetCoords = Cell::NUMBER . $row;
if($style->getActiveCell() != $targetCoords) {
    $sheet->duplicateStyle($style, $targetCoords);
}
于 2013-09-27T07:31:39.167 回答
1

在不知道图书馆的细节的情况下......

如何改变这个:

public function getHashCode() { //class PHPExcel_Style_Fill
    if ($this->_isSupervisor) { 

对此:

public function getHashCode() { //class PHPExcel_Style_Fill
    if ($this->_isSupervisor && ( $this != $this->getSharedComponent() ) ) { 

如果该if语句后的哈希码逻辑不适用于_isSupervisor,则添加另一个逻辑语句并返回一个固定值,如下所示:

public function getHashCode() { //class PHPExcel_Style_Fill
    if ($this->_isSupervisor) { 
        if ( $this == $this->getSharedComponent() )
            return md5(0);
于 2013-09-27T04:26:26.867 回答