function xlsParse($file = '') { $file = parent::xlsParse($file); return $file; }
function BigFile($iter) { global $fname; $myxls = new BiffBase(); $myxls->outfile = 'big.xls'; set_time_limit(600); $x = 1; for ($r = 0; $r < $iter; $r++) { for ($c = 0; $c <= MAX_COLS; $c++) { $myxls->xlsWriteNumber($r, $c, $x++, 10, 0, FONT_0, ALIGN_RIGHT, 0); } } $myxls->xlsParse($fname); return; }