'2009/08'에 해당되는 글 2건

  1. 2009/08/28 휴팟 매니아를 모집합니다.
  2. 2009/08/03 PHP 파일 다운로드 헤더 Content-disposition


세상의 모든팀의 활동을 지원하는 휴팟!

휴팟을 함께 발전시켜 나갈 사람을 모집합니다. ^^!


저작자 표시
Posted by iHWAN

Content-Disposition 은 컨텐트 타입의 옵션이다.
실제로 지정된 파일명을 지정함으로써 더 자세한 파일의 속성을 알려줄 수 있다.


2.1  The Inline Disposition Type

   A bodypart should be marked `inline' if it is intended to be displayed automatically upon display of the message.  Inline  bodyparts should be presented in the order in which they occur,  subject to the normal semantics of multipart messages.

"Content-disposition: inline"

브라우저 인식 파일확장자를 가진 파일들에 대해서는 웹브라우저 상에서 바로 파일을 자동으로 보여줄 수 있어서 의미상인 멀티파트 메시지를 표현하는데 있다. 그외의 파일들에 대해서는 "파일 다운로드" 대화상자가 뜨도록 하는 헤더속성이다.



2.2  The Attachment Disposition Type

  Bodyparts can be designated `attachment' to indicate that they are separate from the main body of the mail message, and that their display should not be automatic, but contingent upon some further action of the user.  The MUA might instead present the user of a bitmap terminal with an iconic representation of the attachments, or, on character terminals, with a list of attachments from which the user could select for viewing or storage.

"Content-disposition: attachment"

브라우저 인식 파일확장자를 포함하여 모든 확장자의 파일들에 대해,  다운로드시 무조건 "파일 다운로드" 대화상자가 뜨도록 하는 헤더속성이라 할 수 있다.

 http://www.ietf.org/rfc/rfc2183.txt 


출처: Content-disposition 속성


저작자 표시
Posted by iHWAN