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、1 つのオブジェクトが自分自身を何度も参照しています。

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

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 に答える