//获取已发送的相应头
$hds = headers_list();
foreach ($hds as $v) {
if (strpos($v, 'Content-type') !== false) {
//发送了content-type
if (strpos($v, 'text/html') === false) {
//不是HTML内容 有可能是JSON或xml 所以阻止它输出
return;
}
}
}