jongpak / prob-board

A simple web board based on prob-framework
MIT License
1 stars 0 forks source link

파일 다운로드에서 PSR-7을 적용하여 헤더 설정 #4

Closed jongpak closed 8 years ago

jongpak commented 8 years ago

현재, 다음과 같이 header 를 설정하고 있다.

header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . $attachment->getName() . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize(__DIR__ . '/../data/attachment/' . $attachment->getId()));

https://github.com/jongpak/prob-framework/issues/36 prob-framework의 36번 이슈가 해결되면, ReqeustInterface를 이용하여 헤더를 설정하도록 하면 좀 더 깔끔하고, 이식성이 좋을 것 같음.