3

我找不到一个像样的教程来使用 fpdf 制作表格并从 mysql 数据库中获取数据。我只想知道如何创建一个。我在网上尝试样本时遇到了很多错误。

例如,我有列、名字、中间名、姓氏、年龄和电子邮件。

如何使用 fpdf 创建表并回显数据库中的条目?

4

2 回答 2

6

阅读并遵循 FPDF 网站上的教程可能是一个好的开始。

假设你有一个表(让我们称之为people)和这样的样本数据

CREATE TABLE People
    (id int, 
     first_name varchar(5), 
     middle_name varchar(4), 
     last_name varchar(5), 
     age int, 
     email varchar(15));

INSERT INTO People
    (id, first_name, middle_name, last_name, age, email)
VALUES
    (1, 'Jhon', NULL, 'Doe', 27, 'jhon@email.com'),
    (2, 'Mark', 'J', 'Lee', 35, 'mark@email.com'),
    (3, 'Helen', 'P', 'Smith', 30, 'helen@email.com');

这是一个基本的 php 脚本,可以执行您想要的操作。注意:为简洁起见,代码缺少任何错误处理。

<?php
require('fpdf.php');

class People {
    public function all() {
        try {
            $db = new PDO('mysql:host=localhost;dbname=test;charset=UTF-8', 'user', 'password');
            $query = $db->prepare("SELECT first_name, middle_name, last_name, age, email FROM people ");
            $query->execute();
            $people = $query->fetchAll(PDO::FETCH_ASSOC);
        } catch (PDOException $e) {
            //echo "Exeption: " .$e->getMessage();
            $result = false;
        }
        $query = null;
        $db = null;
        return $people;        
    }
}

class PeoplePDF extends FPDF {
    // Create basic table
    public function CreateTable($header, $data)
    {
        // Header
        $this->SetFillColor(0);
        $this->SetTextColor(255);
        $this->SetFont('','B');
        foreach ($header as $col) {
            //Cell(float w [, float h [, string txt [, mixed border [, int ln [, string align [, boolean fill [, mixed link]]]]]]])
            $this->Cell($col[1], 10, $col[0], 1, 0, 'L', true);
        }
        $this->Ln();
        // Data
        $this->SetFillColor(255);
        $this->SetTextColor(0);
        $this->SetFont('');
        foreach ($data as $row)
        {
            $i = 0;
            foreach ($row as $field) {
                $this->Cell($header[$i][1], 6, $field, 1, 0, 'L', true);
                $i++;
            }
            $this->Ln();
        }
    }
}

// Column headings
$header = array(
             array('First Name',  30), 
             array('Middle Name', 30), 
             array('Last Name',   30),
             array('Age',         12),
             array('Email',       47)
          );
// Get data
$people = new People();
$data = $people->all();

$pdf = new PeoplePDF();
$pdf->SetFont('Arial', '', 12);
$pdf->AddPage();
$pdf->CreateTable($header,$data);
$pdf->Output();

确保更改连接字符串

$db = new PDO('mysql:host=localhost;dbname=test;charset=UTF-8', 'user', 'password');
                          ^^^^^^^^^        ^^^^                  ^^^^    ^^^^^^^^
于 2013-05-23T05:38:58.323 回答
0

楼上的答案对你的问题的主要原因是好的,但我建议你采用TCPDF而不是fpdf,因为第一个比第二个快,而且如果你要创建一个非常大的文件(考虑到您将从数据库中找到的行)TCPDF作为非常好的性能。还可以考虑使用Zend_PDF模块,它在第一次影响时比其他模块更难使用,但它是目前最快的库。我的意见是 tha ,如果你是我提到的情况,你可以创建一个更大的类(在 OOP 编程中),它使用 zend_pdf 和Zend_DB并轻松完成所有工作。

于 2013-05-27T11:24:28.953 回答