我试图在PDF库的帮助下生成PDF。它给我以下错误是什么原因。
致命错误:未捕获错误:调用C:\ xampp \ htdocs \ geochronology \ library \ admin \ generatepdf1.php:26中未定义的方法FPDF :: headerTable()堆栈跟踪:#0 {main}抛出C:\ xampp \第26行的htdocs \ geochronology \ library \ admin \ generatepdf1.php
setfont('Arial','B',12); $this->cell(20,10,'SL_NO',1,0,'c'); $this->cell(20,10,'USER NAME' ,1,0,'c'); $this->cell(20,10,'AFFILIATION',1,0,'c'); $this->cell(20,10,'SAMPLE TYPE' ,1,0,'c'); $this->cell(20,10,'SAMPLE ID',1,0,'c'); $this->cell(20,10,'DATE',1,0,'c'); $THIS->Ln(); } } $pdf = new FPDF(); $pdf->AliasNbPages(); $pdf->AddPage('L','A4',0); $pdf->headerTable(); $pdf->output(); ?>问题来源于stack overflow
您必须调用您创建的类才能访问headeTable,因此:
setfont('Arial','B',12); $this->cell(20,10,'SL_NO',1,0,'c'); $this->cell(20,10,'USER NAME' ,1,0,'c'); $this->cell(20,10,'AFFILIATION',1,0,'c'); $this->cell(20,10,'SAMPLE TYPE' ,1,0,'c'); $this->cell(20,10,'SAMPLE ID',1,0,'c'); $this->cell(20,10,'DATE',1,0,'c'); $THIS->Ln(); } } $pdf = new mypdf(); $pdf->AliasNbPages(); $pdf->AddPage('L','A4',0); $pdf->headerTable(); $pdf->output(); ?>版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。