在Yii中使用来自$ this-> renderpartial的html2pdf

时间:2013-12-09 07:22:00

标签: php yii renderpartial html2pdf

我可以这样做:

$content = $this->renderpartial('DeedCertificate',array('deed'=>$deed,'cnt'=>$cnt));        
$html2pdf = new HTML2PDF('P','A4','en');
$html2pdf->WriteHTML($content);
$html2pdf->Output('/var/www/myapp/images/example.pdf','F');

$ html2pdf->使用$ content =“hello”时输出l就像魅力一样。 现在我试图传递yii的renderpartial的输出..所以它可以成为PDF ...但我的pdf是空白的。

1 个答案:

答案 0 :(得分:4)

你可以为html generated $this->renderPartial('DeedCertificate' , array('data'=>$data) , true); // set this to true 为你做,如下:

{{1}}