无法找到请求的 PDF
这是我的功能:-
function genpdf()
{
$this->load->library('session');
$this->load->library('PDFMerger');
$a=$_POST['a'];
$b=$_POST['b'];
$pdf = new PDFMerger;
$pdf->addPDF("samplepdfs/$a")
->addPDF("samplepdfs/$b")
->merge('file', 'http://localhost/student/samplepdfs/genpdf.pdf');
}
我需要将不同的 PDF 合并为一个。我正在使用fpdf & fpdi。我希望用codeigniter来完成。也欢迎其他解决方案(与上述不同的方法)。