在PHP中,我们可以通过以下方式设置Content-Type:
header('Content-Type: text/plain');
但是,如果我处理需要显示错误消息的PHP类,则根据内容类型显示错误消息的格式,例如,如果页面为text/html
,则显示HTML格式的错误消息;否则,显示纯文本错误消息。
我是否可以使用任何功能/片段来检测页面Content-Type?
注意:假定PHP类文件通过require_once()
更新:从@ Tamil的回答中,我进行了一次简短的测试:
<?php
header('Content-Type: text/plain');
$finfo = finfo_open(FILEINFO_MIME_TYPE); // return mime type ala mimetype extension
echo finfo_file($finfo, __FILE__) . "\n";
finfo_close($finfo);
?>
仅返回text/x-php
。但我希望结果会返回text/plain
。
答案 0 :(得分:9)
尝试headers_list()
功能:
<?php
header('Content-Type: text/plain');
$headers = headers_list();
var_dump($headers);
?>
显示(在我的情况下):
array(2) {
[0]=>
string(23) "X-Powered-By: PHP/5.4.5"
[1]=>
string(24) "Content-Type: text/plain"
}
要规范化结果数组,您可以使用:
<?php
header('Content-Type: text/plain');
$headers = headers_list();
foreach($headers as $index => $value) {
list($key, $value) = explode(': ', $value);
unset($headers[$index]);
$headers[$key] = $value;
}
var_dump($headers);
?>
节目:
array(2) {
["X-Powered-By"]=>
string(9) "PHP/5.4.5"
["Content-Type"]=>
string(10) "text/plain"
}
因此,带有规范化数组的Content-Type
标头可能会像这样获得:
echo $headers['Content-Type'];