recursivo - PHPExcel_Style_Fill recursión infinita
recursividad php arbol (2)
Sin conocer los detalles de la biblioteca ...
¿Qué hay de cambiar esto?
public function getHashCode() { //class PHPExcel_Style_Fill
if ($this->_isSupervisor) {
A esto:
public function getHashCode() { //class PHPExcel_Style_Fill
if ($this->_isSupervisor && ( $this != $this->getSharedComponent() ) ) {
Si la lógica del código hash después de la instrucción if
no se aplica a _isSupervisor
, entonces agregue otra instrucción lógica y devuelva un valor fijo, como este:
public function getHashCode() { //class PHPExcel_Style_Fill
if ($this->_isSupervisor) {
if ( $this == $this->getSharedComponent() )
return md5(0);
Utilizo la biblioteca PHPExcel 1.7.9
para trabajar con archivos de Excel
. Primero, creo una plantilla, la estilizo y la pulimento. Luego, para evitar la codificación de estilo, utilizando la biblioteca mencionada anteriormente, abro esa plantilla, modifico algunos valores y los guardo como un nuevo archivo .xlsx
.
Primero, buscamos ese estilo de las celdas.
$this->styles = array() ;
$this->styles[''category''] = $sheet->getStyle("A4");
$this->styles[''subcategory''] = $sheet->getStyle("A5");
Aquí está la función recursiva, que muestra categorías y subcategorías.
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);
}
}
}
}
El problema
Si se usa $sheet->duplicateStyle()
, será imposible guardar el documento debido a la recursión infinita.
Se alcanzó el nivel máximo de anidación de función de ''200'', abortando! <- ERROR FATAL
El problema está en la siguiente pieza de código, dentro de la clase PHPExcel_Style_Fill
, un objeto se está haciendo referencia a sí mismo una y otra vez.
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__
);
}
¿Hay alguna solución para resolver esto? También acepto cualquier idea sobre cómo aplicar un estilo completo de una celda a otra.
Solución:
Como dijo @MarkBaker en comentarios, el develop
sucursales en GitHub realmente contiene correcciones para el error.
EDITAR Agregué una solicitud de extracción con una solución: https://github.com/PHPOffice/PHPExcel/pull/251
Esto sucede cuando intenta duplicar el estilo de la celda en la misma celda; Mira esto:
$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'');
Funcionará bien. PERO si agrego otra línea como esta:
$sheet->duplicateStyle($sheet->getStyle(''A1''), ''A1'');
luego bang, la recursión infinita comienza después de llamar al método save
Para arreglar tu código, debes modificar esta parte:
$sheet->duplicateStyle((($level == 0) ? $this->styles[''category''] : $this->styles[''subcategory'']), Cell::NUMBER . $row);
A algo parecido a:
$style = ($level == 0) ? $this->styles[''category''] : $this->styles[''subcategory''];
$targetCoords = Cell::NUMBER . $row;
if($style->getActiveCell() != $targetCoords) {
$sheet->duplicateStyle($style, $targetCoords);
}