如何从php文件中使用FPDF

时间:2014-05-29 09:06:02

标签: php fpdf

我使用FPDF从php文件生成pdf文件:

<?php
require('fpdf.php');

class PDF extends FPDF
{
// Chargement des données
function LoadData($file)
{
    // Lecture des lignes du fichier
    $lines = file($file);
    $data = array();
    foreach($lines as $line)
        $data[] = explode(';',trim($line));
    return $data;
}

// Tableau simple
function BasicTable($header, $data)
{
    // En-tête
    foreach($header as $col)
        $this->Cell(40,7,$col,1);
    $this->Ln();
    // Données
    foreach($data as $row)
    {
        foreach($row as $col)
            $this->Cell(40,6,$col,1);
        $this->Ln();
    }
}

// Tableau amélioré
function ImprovedTable($header, $data)
{
    // Largeurs des colonnes
    $w = array(40, 35, 45, 40);
    // En-tête
    for($i=0;$i<count($header);$i++)
        $this->Cell($w[$i],7,$header[$i],1,0,'C');
    $this->Ln();
    // Données
    foreach($data as $row)
    {
        $this->Cell($w[0],6,$row[0],'LR');
        $this->Cell($w[1],6,$row[1],'LR');
        $this->Cell($w[2],6,number_format($row[2],0,',',' '),'LR',0,'R');
        $this->Cell($w[3],6,number_format($row[3],0,',',' '),'LR',0,'R');
        $this->Ln();
    }
    // Trait de terminaison
    $this->Cell(array_sum($w),0,'','T');
}

// Tableau coloré
function FancyTable($header, $data)
{
    // Couleurs, épaisseur du trait et police grasse
    $this->SetFillColor(255,0,0);
    $this->SetTextColor(255);
    $this->SetDrawColor(128,0,0);
    $this->SetLineWidth(.3);
    $this->SetFont('','B');
    // En-tête
    $w = array(40, 35, 45, 40);
    for($i=0;$i<count($header);$i++)
        $this->Cell($w[$i],7,$header[$i],1,0,'C',true);
    $this->Ln();
    // Restauration des couleurs et de la police
    $this->SetFillColor(224,235,255);
    $this->SetTextColor(0);
    $this->SetFont('');
    // Données
    $fill = false;
    foreach($data as $row)
    {
        $this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
        $this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
        $this->Cell($w[2],6,number_format($row[2],0,',',' '),'LR',0,'R',$fill);
        $this->Cell($w[3],6,number_format($row[3],0,',',' '),'LR',0,'R',$fill);
        $this->Ln();
        $fill = !$fill;
    }
    // Trait de terminaison
    $this->Cell(array_sum($w),0,'','T');
}
}

$pdf = new PDF();
// Titres des colonnes
$header = array('Pays', 'Capitale', 'Superficie (km²)', 'Pop. (milliers)');
// Chargement des données
$data = $pdf->LoadData('pays.txt');
$pdf->SetFont('Arial','',14);
$pdf->AddPage();
$pdf->BasicTable($header,$data);
$pdf->AddPage();
$pdf->ImprovedTable($header,$data);
$pdf->AddPage();
$pdf->FancyTable($header,$data);
$pdf->Output();
?>

但是当我执行它时,(php文件)会出现这些警告:

  

警告:文件(pays.txt)[function.file]:无法打开流:C:\ Program Files \ EasyPHP-5.3.9 \ www \ PDF \ fpdf16 \ test_pdf.php中没有此类文件或目录第10行

     

警告:第12行的C:\ Program Files \ EasyPHP-5.3.9 \ www \ PDF \ fpdf16 \ test_pdf.php中为foreach()提供的参数无效   FPDF错误:某些数据已经输出,无法发送PDF文件

我真的不知道如何解决它,任何建议,谢谢!

1 个答案:

答案 0 :(得分:1)

你得到两个警告,第二个只是一个跟进问题,你可以忽略它。第一个表示您的问题:脚本无法找到您要加载的文件:

$data = $pdf->LoadData('pays.txt');

此处指定的字符串'pays.txt'用作要在该方法LoadData($file)中进一步打开的文件的路径(位置)。这就是问题发生的地方:从php进程来看,该路径下没有这样的文件。因此打开文件不会成功,这是一个引发进一步问题的问题。

现在很可能在某处有一个名为“pays.txt”的文件,因为你编写了那些行。很可能文件根本不在您(或脚本)期望的位置。所以你有这些选择:

  1. 而不是仅指定文件的名称,您可以指定文件的绝对路径。这使得打开(搜索)文件独立于当前进程。绝对路径类似于:/some/path/to/pays.txt 。或者,用那种奇怪的MS-Windows表示法:C:\\some\path\to\pays.txt
  2. 您可以指定文件的 relative 路径,以便进程可以找到并打开它。相对路径类似于../../folder/pays.txt,这样的路径相对于执行php脚本的当前工作目录被解释为
  3. 您可以将文件直接移动到正在执行的php脚本进程的当前工作目录中,这样它就可以直接在其名称下找到,而无需指定路径。这可能会引发安全问题,因此我会建议反对它。尝试将文件编码逻辑和数据保存在单独的不同位置。