我从事FPDF已有一段时间了,现在有一些运行良好的代码。它会毫无问题地生成PDF。
现在我想在服务器上的特定位置生成它。
我已经在网站结构中创建了一个目录,并将其命名为PDF。
将其写入主目录是好的,将其写入此子目录不起作用。
我已经手动将文件写入新位置,并且可以正常工作。
<?php
require('/var/www/html/test/fpdf/fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
//Logo
$pdf->Image('/var/www/html/test/localisation/logo.png',10,6,30);
// $environment holds the main directory location - /var/www/html/test/
// $id is the invoice number
$pdfname = $environment."pdfs/invoice".$id.".pdf";
// location shows correctly on screen
print "*** ".$pdfname." ***";
//This is the output statement
$pdf->Output( 'F',$pdfname, true);
?>
因此,我希望文件能够写入pdf目录。
这里什么都没写。
如果删除了pdf目录,则文件将正确写入主目录。