int $row

    int $column

    string | int | double $data

    string $format

    实例

    1. $excel = new \Vtiful\Kernel\Excel($config);
    2.  
    3. $textFile = $excel->fileName("free.xlsx")
    4. ->header(['name', 'money']);
    5.  
    6. $textFile->insertText($index+1, 0, 'viest');
    7. $textFile->insertText($index+1, 1, 10000, '#,##0');
    8. }
    9.  
    10. $textFile->output();