ホームページ >バックエンド開発 >PHPチュートリアル >phpexcel を使用してデータをエクスポートする PHP 実装_PHP チュートリアル
废话不多说,直接上代码吧
$filename = "outexcel.xls";
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header('Content-Disposition:inline;filename="'.$filename.'"');
header("Content-Transfer-Encoding: binary");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("キャッシュ制御: 必須再検証、事後チェック = 0、事前チェック = 0");
header("Pragma: no-cache");
$obj_Writer->save('php://output');
}