Пример #1
0
 function xlsParse($file = '')
 {
     $file = parent::xlsParse($file);
     return $file;
 }
Пример #2
0
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;
}