$htmloutput .= $this->renderPartial('sitepdf',array(
'model'=>$model),true,true);
'sitemodel'=>$sitemodel,
$mPDF1 = Yii::app()->ePdf->mpdf('', 'A5');
$mPDF1->WriteHTML($htmloutput);
$stylesheet = file_get_contents(Yii::getPathOfAlias('webroot.css').'/form.css');
$mPDF1->WriteHTML($stylesheet, 1);
$mPDF1->Output();
当我使用此代码创建 pdf 时,我收到错误消息。
preg_replace() [<a href='function.preg-replace'>function.preg-replace</a>]: Compilation failed: regular expression is too large at offset 39815
我尝试像“D:/xampp/.......”一样手动输入路径,即使那不起作用
但是,如果我评论样式表,我可以获得没有我在其中实现的样式的 pdf。
但我想包括样式表