控制器:
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