Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/71.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 如何在fpdf中创建多小区_Php_Jquery_Html_Fpdf - Fatal编程技术网

Php 如何在fpdf中创建多小区

Php 如何在fpdf中创建多小区,php,jquery,html,fpdf,Php,Jquery,Html,Fpdf,使用下面的代码,PDF以无序的方式出现,并且相互覆盖。如何解决这个问题以及如何在fpdf中使用多小区 <?php require_once("fpdf/fpdf.php"); $mypdf = new FPDF(); $mypdf -> AddPage(); $mypdf -> SetTitle("This is for Testing",false); $mypdf -> SetFont("Arial","B","8"); $mypdf -> SetTextCol

使用下面的代码,PDF以无序的方式出现,并且相互覆盖。如何解决这个问题以及如何在fpdf中使用多小区

<?php
require_once("fpdf/fpdf.php");
$mypdf = new FPDF();
$mypdf -> AddPage();
$mypdf -> SetTitle("This is for Testing",false);
$mypdf -> SetFont("Arial","B","8");
$mypdf -> SetTextColor(253,12,120);
$mypdf -> SetDrawColor(253,12,120);
$mypdf -> Cell(20,10,"Name",1,0,"L");
$mypdf -> Cell(30,10,"Address",1,0,'');
$mypdf -> Cell(30,10,"Phone Number",1,0,'');
$mypdf -> Cell(20,10,"Email Id",1,0,'');
$mypdf -> Cell(20,10,"State",1,0,'L');
$mypdf -> Cell(20,10,"Gender",1,1,'L');
$mypdf -> Cell(20,10,"Jackson",1,"0","");
$mypdf -> Cell(30,10,"My Adress is Different",1,"0","");
$mypdf -> Cell(30,10,"1234567890",1,"","0",false);
$mypdf -> Cell(20,10,"xxxx1234x@gmail.com",1,"","L",false);
$mypdf -> Cell(20,10,"xxxx xxxxx",1,"","L",false);
$mypdf -> Cell(20,10,"Male",1,"","L",false);
$mypdf -> Output();
?>

您需要改用MultiCell()

以下是您的代码:

您可以在那里测试和使用

 <?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);


谢谢

我的意思是,您需要使用MultiCell()而不是Cell()。但是你必须看一下我链接到的文档,你会看到它是如何使用的。我如何编写,比如$mypdf->MultiCell(20,10,“xxxx1234x@gmail.com,1,,,L,假);如何测试Ajay Malhotra先生?首先,我输入代码,页面名为example.php,然后输入代码?
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;
  }
}