我想在Laravel-Excel中将等号导出为字符串而不是公式。
我使用Maatwebsite / Laravel-Excel。
$output = [[1,2,3],["===",5,6],[7,8,9]];
//example
Excel::create('outputs', function($excel) use($output) {
$excel->sheet('Sheet 1', function($sheet) use($output) {
$sheet->fromArray($output,NULL,'A1',true,false);
});
})->export('xls');
错误消息:
PHPExcel_Calculation_Exception 表格1!A2->公式错误:发生意外错误