관리 메뉴

웹개발자의 기지개

[PHP] MS워드 파일로 다운로드 받기 본문

PHP

[PHP] MS워드 파일로 다운로드 받기

http://portfolio.wonpaper.net 2021. 6. 28. 00:51

excel 다운로드 받기와 거의 유사하다.

반드시 확장자를 doc 로 만들어야한다.

 

 

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-word;charset=UTF-8"); 
header("Content-Disposition: attachment; filename=down_{$year}{$month}{$day}.doc"); 
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-word; charset=utf-8\">");
cs

 

Comments