Codeigniter 2中的cezPDF

时间:2012-06-27 10:48:18

标签: pdf codeigniter-2

我在CodeIgniter 2中使用cezPDF库 但它似乎无法打印表或ezTable无法正常工作 以前有人面对这个吗?或任何解决方案? 看看我的代码:

$db_data [] = array ('name' => 'x' );
$db_data [] = array ('name' => 'y' );
$db_data [] = array ('name' => 'z' );
$col_names = array ('name' => 'col' );
$this->cezpdf->ezTable ( $db_data, $col_names, '', array ('width' => 180, 'xPos' => 140 ) );

1 个答案:

答案 0 :(得分:1)

你忘了写这条指令

$this->cezpdf->ezStream();

顺便说一下,这是一个有效的例子

$this->load->library('cezpdf');

$db_data[] = array('name' => 'Jon Doe', 'phone' => '111-222-3333', 'email' => 'jdoe@someplace.com');
$db_data[] = array('name' => 'Jane Doe', 'phone' => '222-333-4444', 'email' => 'jane.doe@something.com');
$db_data[] = array('name' => 'Jon Smith', 'phone' => '333-444-5555', 'email' => 'jsmith@someplacepsecial.com');

$col_names = array(
    'name' => 'Name',
    'phone' => 'Phone Number',
    'email' => 'E-mail Address'
);

$this->cezpdf->ezTable($table_data, $col_names, 'Contact List', array('width'=>550));
$this->cezpdf->ezStream();