Try to show pdf file using PHP and fpdf

前端 未结 5 811
灰色年华
灰色年华 2021-01-07 11:19

Background: Its\' a e learning website, when user in the learning stage, it will show content for reading at first 3 pages, and after that it will need user

5条回答
  •  星月不相逢
    2021-01-07 11:32

    Yii::$app->response->format = \yii\web\Response::FORMAT_RAW;

    Yii::$app->response->headers->add('Content-Type', 'application/pdf');

        $pdf = new FPDF();
    
        $pdf->AliasNbPages();
        $pdf->AddPage();
        $pdf->SetFont('Arial', 'B', 15);
        $pdf->Cell(40, 10, 'Hello World');
        $pdf->Output();
    

提交回复
热议问题