Home  >  Article  >  Backend Development  >  Check whether there is output judgment statement before header

Check whether there is output judgment statement before header

WBOY
WBOYOriginal
2016-07-25 09:11:10973browse
  1. if (!headers_sent($filename, $linenum)) {
  2. @header("Location:$url");
  3. exit;
  4. }
  5. else
  6. {
  7. $t = "In file $filename, $linenum There are characters in the line output and cannot be jumped, please correct ";
  8. echo $t;
  9. exit;
  10. }
Copy code


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn