【问题标题】:How to create table in FPDF using php? [closed]如何使用 php 在 FPDF 中创建表格? [关闭]
【发布时间】:2015-07-07 21:20:11
【问题描述】:

我正在尝试使用 PHP 创建 PDF 文件。

我的问题是我想创建一个表,但我不知道该怎么做。

有什么建议吗?

【问题讨论】:

  • 是的,我的建议是阅读精美的文档。
  • 什么意思?我在问如何在 fpdf 中创建表格。这是一个愚蠢的问题吗?
  • 这不是一个愚蠢的问题,但对于 StackOverflow 来说它太宽泛了。 docs 向您展示如何制作表格。
  • @MaherMahmoud 欢迎使用 stackoverflow。如果您需要帮助,您应该展示您的尝试,人们会非常乐意帮助您解决屏蔽问题。这可能会帮助您从这里开始:stackoverflow.com/help/how-to-ask

标签: php html pdf fpdf


【解决方案1】:
int PDF_add_table_cell ( resource $pdfdoc , int $table , int $column ,
                         int $row , string $text , string $optlist )

将单元格添加到新表或现有表中。

更多关于 PDF 函数的信息可以在这里找到: http://php.net/manual/en/book.pdf.php


如果您想使用 FPDF,这里是取自 FPDF.org 的示例

<?php
require('fpdf.php');    
class PDF_MC_Table extends FPDF {
 var $widths;
 var $aligns;

 function SetWidths($w){
    //Set the array of column widths
    $this->widths=$w;
 }

 function SetAligns($a){
    //Set the array of column alignments
    $this->aligns=$a;
 }

 function Row($data){
    //Calculate the height of the row
    $nb=0;
    for($i=0;$i<count($data);$i++)
        $nb=max($nb,$this->NbLines($this->widths[$i],$data[$i]));
    $h=5*$nb;
    //Issue a page break first if needed
    $this->CheckPageBreak($h);
    //Draw the cells of the row
    for($i=0;$i<count($data);$i++){
        $w=$this->widths[$i];
        $a=isset($this->aligns[$i]) ? $this->aligns[$i] : 'L';
        //Save the current position
        $x=$this->GetX();
        $y=$this->GetY();
        //Draw the border
        $this->Rect($x,$y,$w,$h);
        //Print the text
        $this->MultiCell($w,5,$data[$i],0,$a);
        //Put the position to the right of the cell
        $this->SetXY($x+$w,$y);
    }
    //Go to the next line
    $this->Ln($h);
 }

 function CheckPageBreak($h){
    //If the height h would cause an overflow, add a new page immediately
    if($this->GetY()+$h>$this->PageBreakTrigger)
        $this->AddPage($this->CurOrientation);
 }

 function NbLines($w,$txt){
    //Computes the number of lines a MultiCell of width w will take
    $cw=&$this->CurrentFont['cw'];
    if($w==0)
        $w=$this->w-$this->rMargin-$this->x;
    $wmax=($w-2*$this->cMargin)*1000/$this->FontSize;
    $s=str_replace("\r",'',$txt);
    $nb=strlen($s);
    if($nb>0 and $s[$nb-1]=="\n")
        $nb--;
    $sep=-1;
    $i=0;
    $j=0;
    $l=0;
    $nl=1;
    while($i<$nb){
        $c=$s[$i];
        if($c=="\n"){
            $i++;
            $sep=-1;
            $j=$i;
            $l=0;
            $nl++;
            continue;
        }
        if($c==' ')
            $sep=$i;
        $l+=$cw[$c];
        if($l>$wmax){
            if($sep==-1){
                if($i==$j)
                    $i++;
            } else
                $i=$sep+1;
            $sep=-1;
            $j=$i;
            $l=0;
            $nl++;
        } else
            $i++;
    }
    return $nl;
 }
}
?>

【讨论】:

    【解决方案2】:

    另外看tutorial 6

    $pdf->WriteHTML($html);
    

    你可以写你的表格然后像这样输出它。

    虽然我会推荐TCPDF,因为它更通用

    【讨论】:

      猜你喜欢
      • 2023-01-20
      • 1970-01-01
      • 1970-01-01
      • 2016-01-22
      • 1970-01-01
      • 2011-11-07
      • 1970-01-01
      • 1970-01-01
      • 2012-12-05
      相关资源
      最近更新 更多