最大表记录期间的codeigniter dompdf分页问题

时间:2017-10-23 12:27:04

标签: php codeigniter pdf codeigniter-2 dompdf

对于有限的表格记录,pdf看起来不错。

所有表记录在“echo $ html”中看起来都很好,但在pdf创建后,当表记录最大时,分页符不起作用。在最大记录期间,它会创建前4-5页为空。

在最大表记录期间

codeigniter dompdf分页问题:

我的代码段:

//控制器代码

function pdf_create($html, $filename='', $stream=TRUE) 
    {
        require_once("dompdf/dompdf_config.inc.php");

        $dompdf = new DOMPDF();
        $dompdf->load_html($html);
        $dompdf->render();
        if ($stream) {
            $dompdf->stream($filename.".pdf");
        } else {
            return $dompdf->output();
        }
    }

//查看文件代码

    ......
       ......  
        <tr>
                <td>
              <table width="100%" border="0" style="border:solid 1px #BFBFBF; page-break-inside: auto;" cellspacing="0" cellpadding="10">
       <tr bgcolor="#BFBFBF">
        <td><p style="font-size:14px; margin:0px;">Product Name</p></td>
        <td><p style="font-size:14px; margin:0px;">Product Quantity</p></td>
        <td><p style="font-size:14px; margin:0px;">Product Price</p></td>
        <td><p style="font-size:14px; margin:0px;">Total Price</p></td>
      </tr>
      <?php
$product_title = $product_details['product_titles'];
$prod_quantity = $product_details['product_qty'];
$price = $product_details['product_price'];
$total_price = $product_details['product_cal_price'];
$i = 1;
$j = 0;
$productwisetotal = 0;
foreach ($product_title as $value) { $productwisetotal += $value; ?>      
          <tr style="font-size:12px;" valign="top">
              <td style="border-right:solid 1px #BFBFBF"><?php echo $i.'. '.$value; ?></td>
              <td style="border-right:solid 1px #BFBFBF"><?php echo $prod_quantity[$j]; ?></td>
              <td style="border-right:solid 1px #BFBFBF"></td>
              <td style="border-right:solid 1px #BFBFBF"></td>
          </tr>
<?php    $i++;
         $j++;
       } ?>      
    </table>  

                </td>    
                </tr>
        .....
        .....

请告诉我如何在表包含最大记录时如何在pdf中添加分页符?

1 个答案:

答案 0 :(得分:2)

为父表添加page-break-inside: auto,如bellow

<table style="page-break-inside: auto">
<tr>
<td>

<table width="100%" border="0" style="border:solid 1px #BFBFBF;" cellspacing="0" cellpadding="10">
       <tr bgcolor="#BFBFBF">
-------
</table>