当前位置: 代码迷 >> PHP >> 判断是否有 header("Content-type: text/html; charset=utf-8");该如何处理
  详细解决方案

判断是否有 header("Content-type: text/html; charset=utf-8");该如何处理

热度:344   发布时间:2016-04-28 17:12:30.0
判断是否有 header("Content-type: text/html; charset=utf-8");
如何判断是否有 header("Content-type: text/html; charset=utf-8");
有时如果前面已经有这代码,再加上这代码就出错,如何判断
因为这文件是用include 调用的,很多页面都调用这文件,这文件中有 header("Content-type: text/html; charset=utf-8");
------解决思路----------------------
headers_sent 返回假时,表示没有 http 头发出

headers_list() 取得所有发出的头内容

header_remove 删除指定的头
------解决思路----------------------
引用:
如何判断是否有 header("Content-type: text/html; charset=utf-8");
有时如果前面已经有这代码,再加上这代码就出错,如何判断
因为这文件是用include 调用的,很多页面都调用这文件,这文件中有 header("Content-type: text/html; charset=utf-8");


这样试试

header("Content-type: text/html; charset=utf-8");

addHeader();

function addHeader(){
    $header = 'Content-type: text/html; charset=utf-8';
    if(!in_array($header, headers_list())){
        header($header);
    }
}
  相关解决方案