-1

我正在将数据表从 php 页面导出为 pdf 我将页面导出为 pdf 但我无法将页码插入 pdf 文件 如何插入该函数 changeDetails() { $bType = $this->input->post ('文本值'); if($bType == "pdf") { $this->load->library('table'); $this->load->plugin('to_pdf'); $data['countrytoword'] = $this->AddEditmodel1->export(); //echo '国家列表

'; $this->table->set_heading('Country','State','Town','Name'); $out = $this->table->generate($data['countrytoword']); $html = $this->load->view('newpdf',$data, true); pdf_create($html, $cur_date); } } 这是我的视图页面

</tr>

4

1 回答 1

2

你为什么不使用像TCPDF这样的库,它会自动添加页码(如果你想要的话)。只需查看提供的示例。

于 2010-03-26T08:33:06.433 回答