使用 FPDF 将文件保存到预先指定的目录中

2022-08-30 17:00:18

我想将PDF文件保存到用户指定的目录中。我正在使用 FPDF。代码如下:

<?php
//echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.train2invest.net/useradmin/atest_Khan.php\">";
require('fpdf.php');

//create a FPDF object
$pdf=new FPDF();

//set font for the entire document
$pdf->SetFont('times','',12);
$pdf->SetTextColor(50,60,100);

//set up a page
$pdf->AddPage('P');
$pdf->SetDisplayMode(real,'default');

//Set x and y position for the main text, reduce font size and write content
$pdf->SetXY (10,60);
$pdf->SetFontSize(12);
$pdf->Write(5,'Dear Ms.XYX');

 $filename="test.pdf";
//Output the document
$dir = "/G:/PDF/test.pdf/"; // full path like C:/xampp/htdocs/file/file/
$pdf->Output($dir.$filename,'F');
?>

现在,即使我输入文件名,它也不会保存它!我尝试了以下方法:"G:\PDF\"

$filename="G:\PDF\test.pdf";
$pdf->Output($filename.'.pdf','F');


$filename="G:\\PDF\\test.pdf";
$pdf->Output($filename.'.pdf','F');

$filename="G:/PDF/test.pdf";
$pdf->Output($filename.'.pdf','F');


$filename="/G:/PDF/test.pdf/";
$pdf->Output($filename.'.pdf','F');

我已经检查了我尝试写入的目录是否具有写入/读取权限,并且它在那里。它仍然不起作用!

请帮助别人...


答案 1

您错误地使用了 F 选项,F 被设计为将 PDF 保存在服务器上的本地,而不是保存在用户计算机上的特定目录中。因此,您将使用如下内容:

$filename="/home/user/public_html/test.pdf";
$pdf->Output($filename,'F');

这将保存在Web服务器的public_html目录中


答案 2

检查这里的语法:http://www.fpdf.org/en/doc/output.htm 它是:,所以你必须写:string Output([string dest [, string name [, boolean isUTF8]]])

$pdf->Output('F', $filename, true); // save into the folder of the script

或例如:

$pdf->Output('F', '/var/www/html/wp-content/' . $filename, true); // save into some other location

或相对路径:

$pdf->Output('F', '../../' . $filename, true); // to parent/parent folder

但是,我不确定是否可以使用Windows绝对路径...


推荐