FPDF ライブラリを使用していますが、PDF を作成しようとすると、次のエラーが発生します。
警告: ヘッダー情報を変更できません - ヘッダーは既に送信されています (output started at-----) FPDF エラー: 一部のデータは既に出力されているため、PDF ファイルを送信できません
//Send to standard output
if(ob_get_length())
$this->Error('Some data has already been output, can\'t send PDF file');
if(php_sapi_name()!='cli')
{
//We send to a browser
header('Content-Type: application/pdf');
if(headers_sent())
$this->Error('Some data has already been output, can\'t send PDF file');
header('Content-Length: '.strlen($this->buffer));
header('Content-Disposition: inline; filename="'.$name.'"');
header('Cache-Control: private, max-age=0, must-revalidate');
header('Pragma: public');
ini_set('zlib.output_compression','0');
}
echo $this->buffer;