配列からxlsファイルを作成し、次のコードを使用してブラウザにダウンロードしようとしています。
$sheet = array(
array(
'a1 data',
'b1 data',
'c1 data',
'd1 data',
)
);
$doc = new PHPExcel();
$doc->getActiveSheet()->fromArray($sheet, null, 'A1');
header('Content-Type: application/vnd.ms-Excel');
header('Content-Disposition: attachment;filename="your_name.xls"');
header('Cache-Control: max-age=0');
// Do your stuff here
$writer = PHPExcel_IOFactory::createWriter($doc, 'Excel5');
問題は、空のファイルを取得することです。何が問題になる可能性がありますか?
試してください: 公式ドキュメントに従って 、最初にオブジェクトライターでファイルを保存する必要があります
これがあなたが望むものであるかどうか私に知らせてください
<?php
date_default_timezone_set('America/Los_Angeles');
require_once('PHPExcel.php');
$sheet = array(
array(
'a1 data',
'b1 data',
'c1 data',
'd1 data',
)
);
$doc = new PHPExcel();
$doc->setActiveSheetIndex(0);
$doc->getActiveSheet()->fromArray($sheet, null, 'A1');
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="your_name.xls"');
header('Cache-Control: max-age=0');
// Do your stuff here
$writer = PHPExcel_IOFactory::createWriter($doc, 'Excel5');
$writer->save('php://output');
?>
PHPExcelのような外部ライブラリ/クラスを使用できない場合もあります。この場合、HTMLテーブルを使用してヘッダーをxlsに変更することをお勧めします。配列から簡単に作成できます。非常に単純な例です。
<?php
date_default_timezone_set('America/Los_Angeles');
$sheet = array(
array(
'a1 data',
'b1 data',
'c1 data',
'd1 data',
)
);
$table = '<table><tbody><tr><td>A1</td><td>B1</td><td>C1</td><td>D1</td></tr>';
foreach ($sheet as $row) {
$table.= '<tr><td>'. implode('</td><td>', $row) . '</td></tr>';
}
$table.= '</tbody></table>';
header('Content-Encoding: UTF-8');
header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header ("Last-Modified: " . gmdate("D,d M YH:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate");
header ("Pragma: no-cache");
header ("Content-type: application/x-msexcel;charset=UTF-8");
header ("Content-Disposition: attachment; filename=productsExport.xls" );
echo $table;
?>
$header = ['c1.', 'c2', 'c3', 'c4', 'c5', 'c6', 'c7', 'c8', 'c9', 'c10', 'c11'];
header('Content-Disposition: attachment; filename="data'.date('d-m-y').'.xls"');
header("Content-Type: application/vnd.ms-Excel");
$output = fopen('php://output', 'w');
fputcsv($output, $header , "\t");
foreach ($Data as $value) {
$tmp_data = [];
array_Push($tmp_data, $value['c1']);
array_Push($tmp_data, $value['c2']);
array_Push($tmp_data, $value['c3']);
array_Push($tmp_data, $value['c4']);
array_Push($tmp_data, $value['c5'] );
array_Push($tmp_data, $value['c6']);
array_Push($tmp_data, $value['c7']);
array_Push($tmp_data, $value['c8']);
array_Push($tmp_data, $value['c9']);
array_Push($tmp_data, $value['c10']);
array_Push($tmp_data, $value['c11']);
fputcsv($output, $tmp_data , "\t" );
}
fclose($output);