|
|
 Dmitry Polushkin | 2005-11-24 12:31:50 |
Notice and warning is bad. Set size = 0 between the lines:
function _xls_stream_write($data) {
and
if (is_array($data) && !empty($data))
.
The notice is always prints on screen is:
PHP Notice: Undefined variable: size in /path/to/excel.php on line 162 |
 Guilherme | 2009-10-16 03:40:35 - In reply to message 1 from Dmitry Polushkin |
The file excel.php will be the same like that:
(pt-BR o arquivo excel.php ficará assim)
function _xls_stream_write($data)
{
$size = 0;
if (is_array($data) && !empty($data)) |
|