可能是HEADER发送的时候出了错
!!!!!

解决方案 »

  1.   

    ice_berg16:那怎么找呢?怎么改呢?
      

  2.   

    是不是你的PHP文件里有HEADER这样的头文件,然后出错了?\
      

  3.   

    to ice_berg16:我的文件里有
    /**
     * Send http headers
     */
    // Don't use cache (required for Opera)
    $now = gmdate('D, d M Y H:i:s') . ' GMT';
    header('Expires: ' . $now);
    header('Last-Modified: ' . $now);
    header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
    header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
    header('Pragma: no-cache'); // HTTP/1.0
    // Define the charset to be used
    header('Content-Type: text/html; charset=' . $charset);
    是这个原因吗?