php和样式的html表到pdf

时间:2014-03-06 02:53:16

标签: php html css pdf

我有这个代码生成一个样式表但是使用php从数据库中获取表的信息。

<form name="pt_list" action="classes/MYPDF.php" method="post"><br/>
<input type="submit" name="pdf"  value="Download as PDF">
    </form>

<?php
  ob_start();
?>
<table id=patients>
    <tr>
        <th>Pt. username</th>
        <th>Pt. number</th>
        <th>Full Name</th>
        <th>Added on</th>
    </tr>


   <?php    $x=1;
   foreach ($users as $patient) {

   ?> <tr <?php if ($x % 2 == 0) {echo "class='alt'"; } ?>>
        <td> <a href="profile.php?username=<?php echo $patient['username'];?>"><?php echo $patient['username'];?></a></td>
        <td> <?php echo $patient['id'];?></td>
        <td> <?php echo $patient['name'];?></td>
        <td> <?php echo $patient['joined'];?></td>
    </tr>

    <?php
       $x++;
        } ?>
</table>
<?php
    $GLOBALS['table'] = ob_get_clean();
$table = $GLOBALS['table'];
?>

我正试图抓住这张桌子,并将其提供给用户下载为pdf。我试过tcpdf和fpdf但总是不断发送pdf,输出已经发送。这是我的MYPDF.php代码:

<?php
//============================================================+
// File name   : example_003.php
// Begin       : 2008-03-04
// Last Update : 2013-05-14
//
// Description : Example 003 for TCPDF class
//               Custom Header and Footer
//
// Author: Nicola Asuni
//
// (c) Copyright:
//               Nicola Asuni
//               Tecnick.com LTD
//               www.tecnick.com
//               info@tecnick.com
//============================================================+

/**
 * Creates an example PDF TEST document using TCPDF
 * @package com.tecnick.tcpdf
 * @abstract TCPDF - Example: Custom Header and Footer
 * @author Nicola Asuni
 * @since 2008-03-04
 */

// Include the main TCPDF library (search for installation path).
require_once('../tcpdf/tcpdf.php');


// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {

    //Page header
    public function Header() {
        // Logo
        $image_file = K_PATH_IMAGES.'logo_example.jpg';
        $this->Image($image_file, 10, 10, 15, '', 'JPG', '', 'T', false, 300, '', false, false, 0, false, false, false);
        // Set font
        $this->SetFont('helvetica', 'B', 20);
        // Title
        $this->Cell(0, 15, '<< TCPDF Example 003 >>', 0, false, 'C', 0, '', 0, false, 'M', 'M');
    }

    // Page footer
    public function Footer() {
        // Position at 15 mm from bottom
        $this->SetY(-15);
        // Set font
        $this->SetFont('helvetica', 'I', 8);
        // Page number
        $this->Cell(0, 10, 'Page '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');
    }
}

// create new PDF document
$pdf = new MYPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

// set document information
$pdf->SetCreator(PDF_CREATOR);
$pdf->SetAuthor('Nicola Asuni');
$pdf->SetTitle('TCPDF Example 003');
$pdf->SetSubject('TCPDF Tutorial');
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');

// set default header data
$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE, PDF_HEADER_STRING);

// set header and footer fonts
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));

// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);

// set margins
$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);

// set auto page breaks
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);

// set image scale factor
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);

// set some language-dependent strings (optional)
if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {
    require_once(dirname(__FILE__).'/lang/eng.php');
    $pdf->setLanguageArray($l);
}

// ---------------------------------------------------------

// set font
$pdf->SetFont('times', 'BI', 12);

// add a page
$pdf->AddPage();

// set some text to print

// print a block of text using Write()
$pdf->writeHTML($GLOBALS['table'], true, false, true, false, '');

// ---------------------------------------------------------

//Close and output PDF document
$pdf->Output('example_003.pdf', 'D');

//============================================================+
// END OF FILE

这是我得到的错误:注意:未定义的索引:第105行的/Users/Tika/PhpstormProjects/ooplr/classes/MYPDF.php中的表 TCPDF错误:某些数据已经输出,无法发送PDF文件。 任何意见都将不胜感激。

1 个答案:

答案 0 :(得分:0)

  

注意:未定义的索引:第105行的/Users/Tika/PhpstormProjects/ooplr/classes/MYPDF.php中的表

这意味着$ GLOBALS ['table']未定义,不保留数据。将writeHTML行更改为'test'而不是$ GLOBALS ['table']时会发生什么?

您确定该变量首先填充了表格HTML吗?尝试转到mypdf.php的顶部并编写var_dump($ GLOBALS ['table']);出口;在最初的&lt; ?php标签。它输出什么吗?

  

TCPDF错误:某些数据已经输出,无法发送PDF文件。

这是因为如果您已在文档中打印出某些内容,则无法生成和输出PDF。在这种情况下,我认为这是一个跟随错误,因为错误已经输出到文档,你不能再使它成为pdf。它也可能与初始&lt;之前的空格字符一样愚蠢。 ?PHP的。

如果我理解正确的情况,我认为您的问题是将表格数据从html文件移动到MYPDF.php。如果是这种情况,我会考虑另一种解决方案:

<form name="pt_list" action="classes/MYPDF.php" method="post"><br/>
<?php foreach ($users as $patient) {
    echo '<input type="hidden" name="patients[]" value="'.$patient['id'].'">';
} ?>
<input type="submit" name="pdf"  value="Download as PDF">
</form>

这将为每个患者提供一个隐藏的输入字段,然后让您将数据发送到表单目标(在本例中为mypdf.php)。由于我在名称字段中使用[],因此php会识别许多字段可以使用此名称并将结果作为数组。在mypdf.php中,您现在可以通过魔术变量$ _POST ['patients']来获取此数据。您可以预先处理此数据或单独访问数据:$ _POST ['patients'] [0] ... [1]等...

您也可以通过同样的方式获取用户名,姓名,连接数据,也可以使用ID再次从数据库中获取数据。如果你走得这么远,我相信你会自己弄清楚剩下的。

这是我的第一反应,所以如果我没有帮助请告诉我,或者让我知道你有什么不明白的地方。