http://www.maatwebsite.nl/laravel-excel/docs/exportを参照してください。
私はexcelフォームの配列をエクスポートするためにこのように使用します。maatwebsiteでlaravelを使用した単純なExcelエクスポート
- Excelは、輸出であるが、それは私がA1を開始したいA3
- からスタート。
http://www.maatwebsite.nl/laravel-excel/docs/exportを参照してください。
私はexcelフォームの配列をエクスポートするためにこのように使用します。maatwebsiteでlaravelを使用した単純なExcelエクスポート
このコードを試してみてください。
function convertToCSV($data, $options) {
// setting the csv header
if (is_array($options) && isset($options['headers']) && is_array($options['headers'])) {
$headers = $options['headers'];
} else {
$headers = array(
'Content-Type' => 'text/csv',
'Content-Disposition' => 'attachment; filename="ExportFileName.csv"'
);
}
$output = '';
// setting the first row of the csv if provided in options array
if (isset($options['firstRow']) && is_array($options['firstRow'])) {
$output .= implode(',', $options['firstRow']);
$output .= "\n"; // new line after the first line
}
// setting the columns for the csv. if columns provided, then fetching the or else object keys
if (isset($options['columns']) && is_array($options['columns'])) {
$columns = $options['columns'];
} else {
$objectKeys = get_object_vars($data[0]);
$columns = array_keys($objectKeys);
}
// populating the main output string
foreach ($data as $row) {
foreach ($columns as $column) {
$output .= str_replace(',', ';', $row->$column);
$output .= ',';
}
$output .= "\n";
}
// calling the Response class make function inside my class to send the response.
// if our class is not a controller, this is required.
return Response::make($output, 200, $headers);
}
$これが配列のエクセル
にエクスポートする内容を含んでいるresponse_arrayエクセルExcel::create('myexcel', function($excel) use($response_array) {
$excel->sheet('Sheet 1', function($sheet) use($response_array) {
$sheet->fromArray($response_array);
});
})->export('xls');
友人に感謝します。私はそのmaatwebsitがdocumnetationを凌駕する答えを見つける。 –