当前位置:  开发笔记 > 编程语言 > 正文

使用mpdf将内容添加到第二页

如何解决《使用mpdf将内容添加到第二页》经验,为你挑选了1个好方法。

我正在使用https://github.com/kartik-v/yii2-mpdf在Yii2中创建PDF.我有我的第一页,但我需要添加一个分页符,并确保我在新页面上启动第二条信息.我不确定该怎么做.我试过了:

    public function actionReports()
{
  $data = date('d F Y',time());
  $content = $this->renderPartial('_billing', [
    'model' => $data,
  ]);

  $doc = new Pdf([
    // set to use core fonts only
    'mode' => Pdf::MODE_UTF8,
    // A4 paper format
    'format' => Pdf::FORMAT_A4,
    // portrait orientation
    'orientation' => Pdf::ORIENT_PORTRAIT,
    // stream to browser inline
    'destination' => Pdf::DEST_BROWSER,
    // your html content input
    'content' => $content,
  ]);

  return $doc->render();
}

视图

use yii\helpers\Html;

?>
150, 'height' => 55]); ?>

Quarterly Billing Summary

.... rest of text .... ... Tabulated report of billing ...

似乎并没有呈现第二页?



1> scaisEdge..:

尝试简单地创建包含页面和添加的视图

"" in view where you need this will create page break

更简单的方面是管理两个页面..

这是来自http://mpdf1.com/manual/index.php?tid=108

您可以使用HTML代码或PHP强制在文档中的任何位置分页:

$mpdf->AddPage();


推荐阅读
coco2冰冰
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有