大家好,我有一个FPDF和PHP脚本来创建和保存PDF文档。该脚本无法正常工作(我想我保存路径的方式是错误的)。 我希望用户单击“保存”,并且文档必须保存在托管网站的服务器内的文件夹中(在本例中为QNAP)。这是脚本:
<?php
session_start();
$user = $_SESSION['username'];
$sicep = $_SESSION['sicep'];
$notesicep = $_SESSION['notesicep'];
require ('fpdf/fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',11);
$pdf->Cell(100, 8, 'Operatore Centrale Operativa: '.$user, 1 ,1);
$pdf->Cell(100, 8, 'Effettuato in data: ' .date("d/m/Y"). ' In ora: '.date("h:ia") , 1 ,1);
$pdf->Cell(180, 10, 'Verifica funzionale sistema SICEP MVS NET:',1,1);
$pdf->Cell(180, 10, $sicep,1,1);
$pdf->Cell(180, 10, 'Note: '.$notesicep,1,1);
$filename = "orario".date("d/m/Y")."-".date("h:ia").".pdf";
$dir = "/Web/PDF";
$pdf->Output($dir.$filename);
?>
脚本位置为:
\\ 192.168.1x.x \ Web \ Verifiche
PDF文件应保存在以下位置:
\\ 192.168.1x.x \ Web \ PDF
我该怎么办?
答案 0 :(得分:0)
如FPDF documentation中所述,您必须使用F作为输出函数的参数,以将PDF保存在本地服务器上:
$pdf->Output('F','/path/filename.pdf');