You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 2, 2019. It is now read-only.
I'm working on a piece that (among other things), pulls $xls->getSheet($i)->toArray() and stores it into a multidimensional array, performs operations on it, then uses $xls->getSheet($i)->fromArray($this->data[$i], ...) to load everything back into PHPExcel for output.
(Sort of a wrapper/helper class and abstraction layer with a bunch of small nice-to-have features, like curl integration.)
However, the problem I'm experiencing is that the resultant .xlsx file has zero-width rows and columns for the data that was reinserted into PHPExcel from the fromArray() method.
I'm working on a piece that (among other things), pulls
$xls->getSheet($i)->toArray()
and stores it into a multidimensional array, performs operations on it, then uses$xls->getSheet($i)->fromArray($this->data[$i], ...)
to load everything back into PHPExcel for output.(Sort of a wrapper/helper class and abstraction layer with a bunch of small nice-to-have features, like curl integration.)
However, the problem I'm experiencing is that the resultant .xlsx file has zero-width rows and columns for the data that was reinserted into PHPExcel from the fromArray() method.
Input:
http://www.tempsend.com/7E8F154264
Output:
http://www.tempsend.com/6AD13163BF
(I'd like to be sure that this isn't a bug in PHPExcel before I tear everything apart again looking for a bug.)
The text was updated successfully, but these errors were encountered: