在 php 中更改输出的 mime 类型

2022-08-30 09:33:34

我有一个php脚本。大多数情况下,脚本返回 html,它工作正常,但有一次(参数 ?Format=XML) 脚本返回 XML 而不是 HTML。

有没有办法动态地将php输出的返回的哑剧类型从text/html更改为text/xml或appplication/xml?


答案 1
header('Content-type: application/xml');

更多信息,请参阅 header() 的 PHP 文档


答案 2

设置标头:Content-Type

header('Content-Type: text/xml');

虽然你应该使用“application/xml”来代替。


推荐