如何解决PHP中的“Headers already sent”错误

这个问题在这里已经有了答案:

  • 如何解决PHP 11中的“Headers already sent”错误

  • 这种类型的问题是在您写入页面后使用标题时引起的。 我假设你的代码可能看起来像::

     <html>
       <head>
         <title> title </title>
         .........
       </head>
    
       <body>
        .....
         <?php 
            header() // checking some header
         ?>
         .....
       </body>
     </html>
    

    如果是这样,请在html之前使用header()或任何类型的回显或编写代码。 但这是不正确的解决方案。 你可以使用ob_start 。 这是最好的解决方案。 检查这个

    链接地址: http://www.djcxy.com/p/34693.html

    上一篇: How to fix “Headers already sent” error in PHP

    下一篇: headers already sent error