Interview Question: Can we have an echo before header?

后端 未结 2 1687
悲&欢浪女
悲&欢浪女 2020-12-06 01:46

I appeared for php test, their I was asked one question for which I could not find the answer.

The question is like this.

echo \"MESSI is injured!!\"         


        
2条回答
  •  庸人自扰
    2020-12-06 02:21

    You can do it as long as all the header calls come before any non-header output is sent (this includes pesky things like newlines/whitespace). So

    
    

    should do the trick

提交回复
热议问题