我正在将数据表从 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>