爲了「安全原因」,我需要獲取PHP的內容類型。例如,如果您使用了函數header("Content-type: text/html; charset=utf-8")
,那麼在未來執行時,如何分別接收內容類型(text/html
)和字符集(utf-8
)?從頭文件獲取PHP內容類型()
我的真正的問題是知道正在使用和修改哪些字符集僅它,如果需要的話,不必重新定義的信息Content-type
。也就是說,如果內容類型爲application/xml
,請保留它,但只能更改僅包含字符集。
Ex。
Original: Content-type: text/html
First: -> set to application/xml.
Content-type: application/xml
Second: -> set charset.
Content-type: application/xml; charset=utf-8
Third: -> set to text/html
Content-type: text/html; charset=utf-8
怎麼可能?
你想抓住'Accept'標頭 – DevZer0