PHPExcel을 사용하여 클라이언트 다운로드로 Excel 파일 내보내기
PHPExcel을 사용하여 Excel 파일을 생성할 때 다음 옵션을 제공하는 것이 바람직한 경우가 많습니다. 사용자는 서버에 저장하지 않고 이러한 파일을 다운로드할 수 있습니다. 또는 다운로드가 완료된 후 파일을 삭제할 수도 있습니다.
서버에 파일을 저장하지 않고 다운로드를 위해 클라이언트 브라우저로 직접 리디렉션하려면 php://output 스트림을 저장 대상:
<code class="php">$objWriter->save('php://output');</code>
또한 파일 다운로드에는 적절한 헤더를 설정하는 것이 중요합니다.
<code class="php">// Set the MIME type for an Excel file header('Content-type: application/vnd.ms-excel'); // Specify the filename for the downloaded Excel file header('Content-Disposition: attachment; filename="file.xls"'); // Write the Excel file to the browser $objWriter->save('php://output');</code>
위 내용은 PHPExcel을 사용하여 Excel 파일을 브라우저 다운로드로 내보내는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!