maatwebsite〜2.1.0:导出的xls文件中的Datetime列应具有Excel日期格式

时间:2018-08-03 06:05:48

标签: php laravel maatwebsite-excel

我正在尝试将时间列导出为Excel时间格式,但是由于某些原因,它不起作用。

$array_tytan_info_ntt= TYTAN_INFO_NTT::whereDate('fec_startdate', '>=', $variable)
->selectRaw(" TIME(fec_startdate)  as 'STARTDATE1' ")
->get(); 

$excel_tytan_info_ntt = json_decode( json_encode($array_tytan_info_ntt), true);

Excel::create('ntts_mes_'.Carbon::now()->toDateTimeString(), function($excel) use($excel_tytan_info_ntt) {
$excel->sheet('nttsmes', function($sheet) use($excel_tytan_info_ntt) {

$sheet->setColumnFormat(array(
'A' => 'hh:mm:ss',));
$sheet->fromArray($excel_tytan_info_ntt);
});
})->export('xls');

如您所见,以字符串形式返回。

enter image description here

预期行为

enter image description here

非常感谢您的帮助。问候。

0 个答案:

没有答案