ÆÄÀÏÀÇ Á¾·ù¿¡ »ó°ü¾øÀÌ ´Ù¿î·Îµå âÀÌ ¶ß°Ô ÇÏ´Â ¹æ¹ýÀÔ´Ï´Ù.
ÀÓº£µåµÇ´Â ¿ÀÇǽº, À̹ÌÁö, pdf °è¿¿¡¼ À¯¿ëÇϰڳ׿ä..
<?
$fileDir = "ÇØ´çµð·ºÅ丮";
$completeFilePath=$fileDir./.$fileName;
$length = filesize($completeFilePath);
$size = $length;
header("Content-Type: application/ms-x-download");
header("Content-Type: application/octet-stream");
header("Content-Length: $size");
header("Content-Disposition: attachment; filename=$fileName");
header("Content-Transfer-Encoding: binary");
$fh = fopen($completeFilePath, "r");
fpassthru($fh);
exit;
?> | |