관리 메뉴

웹개발자의 기지개

[PHP] 엑셀파일로 다운로드 받기 - 한글깨질때 대비 본문

PHP

[PHP] 엑셀파일로 다운로드 받기 - 한글깨질때 대비

http://portfolio.wonpaper.net 2020. 12. 10. 19:54

간단한 소스이다. php형태의 코딩내역을 엑셀 다운로드 파일로 다운로드 받고자 할때

아래의 소스를 코드 제일상단부에 넣도록 하자.

 

1
2
3
4
5
6
<?
header"Content-type: application/vnd.ms-excel" );   
header"Content-type: application/vnd.ms-excel; charset=utf-8");  
header"Content-Disposition: attachment; filename=test.xls" );   
header"Content-Description: PHP4 Generated Data" );  
?>
cs

 

한글이 깨진다면, 다음과 같이

 

1
2
3
4
5
6
7
8
9
10
$year = date('Y');
$month = date('m');
$day   = date('d');
 
header("Content-type: application/vnd.ms-excel;charset=UTF-8"); 
header("Content-Disposition: attachment; filename=down_{$year}{$month}{$day}.xls"); 
header("Cache-Control: must-revalidate, post-check=0,pre-check=0"); 
header("Pragma: no-cache");
header("Expires: 0"); 
print("<meta http-equiv=\"Content-Type\" content=\"application/vnd.ms-excel; charset=utf-8\">");
cs

 

 

 

Comments