How can I use multiple PHP header content types on the same page? is this possible?

后端 未结 6 735
说谎
说谎 2020-12-06 21:38

Is it possible to use multiple header types in one document? For example:

header(\"Content-type: image/jpeg\");
header(\'Content-Type: text/html; charset=utf         


        
6条回答
  •  南方客
    南方客 (楼主)
    2020-12-06 22:38

    No, a resource has just one media type. HTTP allows multipart messages that can contain multiple entities. But that’s not widely supported by today’s browser.

提交回复
热议问题