Clear previously set headers php

前端 未结 4 961
忘掉有多难
忘掉有多难 2021-02-05 16:15

I would like to know if its possible to clear the current information stored in header_list()

if(headers_sent()){
    foreach(headers_list() as $header){
                


        
4条回答
  •  耶瑟儿~
    2021-02-05 16:48

    You can remove the headers only if they're not already sent. If headers_sent is true, the headers have already gone out and you cannot unset them anymore.

提交回复
热议问题