Como utilizar FPDF

Como faço para que funcione o FDPF com yii2?
Ao utilizar a classe fo FPDF dentro do yii, ele retorna na página base, com algumas escritas.

Código:

<?php
use FPDF;
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont(‘Arial’,‘B’,16);
$pdf->Cell(40,10,‘Hello World!’);
$pdf->Output();
?>

The post has been moved from “Yii 2.0 > General Discussion” to “International > Portuguese”.
Please use English when you post in general forums.

1 Like