PHP 默认内容类型


PHP Default content type?

如果没有明确设置,PHP 似乎默认为内容类型 text/html。 某处是否有全局设置?

是否有任何有关此的文档? 我查看了 http://php.net/manual/en/function.header.php,发现没有提到默认设置或相关设置。

如果要

更改默认值,可以在php.ini中编辑默认的mimetype。

根据您的需求,您可以考虑在 Apache 中添加如下设置:

AddType my/content-type .php

http://httpd.apache.org/docs/2.2/mod/mod_mime.html#AddType