FPDF - 不支持文件类型纯文本文档(text / plain)

时间:2014-04-02 01:15:39

标签: php pdf pdf-generation tcpdf fpdf

控制器:

public function mensualAction() {
        header('Content-Type: application/pdf');
        header('Content-Disposition: attachment; filename="tokens.pdf"');

        require('fpdf/fpdf.php');

        $pdf = new FPDF();
        $pdf->AddPage();
        $pdf->SetFont('Arial', 'B', 16);
        $pdf->Cell(40, 10, 'Hola Mundo!');
        $pdf->Output();
    }

看不到文件PDF

我想要的是用PDF写文本

Docu Oficial网站FPDF

0 个答案:

没有答案