PHP はヘッダーを使用してファイルをダウンロードします
皆さん、私はヘッダーを使用して csv をエクスポートします。ローカルでテストしたところ、正常にダウンロードおよびエクスポートできましたが、サーバーでは Web ページに直接表示されるだけで、ダウンロードできません。これは起こっていますか?
私のヘッダーは次のようになります:
header("Content-Description: File Transfer"); <br /> header("Content-Type: application/octet-stream");<br /> header("Content-Type: application/vnd.ms-excel");<br /> header("Content-Type: application/force-download"); <br /> header("Pragma: public"); <br /> header("Accept-Ranges: bytes"); <br /> header("Expires: 0");<br /> header('Content-Disposition: attachment;filename="data.csv"');<br /> header("Content-Transfer-Encoding: binary");<br /> header("Cache-Control: must-revalidate, post-check=0, pre-check=0");<br /> header('Cache-Control: private',false);