BK the 핵심인재

PHP에서 엑셀 파일로 내려받기..

리브래리언 2013. 6. 25. 14:20

PHP 결과 페이지를 엑셀로 내려받는 방법. 


출력 페이지 제일 처음에 아래 네 줄을 추가.


header( "Content-type: application/vnd.ms-excel;charset=EUC-KR");

header( "Expires: 0" );

header( "Cache-Control: must-revalidate, post-check=0,pre-check=0" );

header( "Pragma: public" );

header( "Content-Disposition: attachment; filename=name_what_you_want.xls" );


출력물이 영문이라면 첫번째 charset을 UTF-8로 바꾸기를 강권합니다.