我一直试图将数据数组打印到fpdf中的表中。 这是我关注的教程: http://www.fpdf.org/en/tutorial/tuto5.htm
除了它一直说:
致命错误:未捕获错误:在......中调用未定义的方法FPDF :: FancyTable()
我见过许多其他类似的问题,但没有一个问题正在修复我的问题。
我觉得这应该是一个非常简单的解决方案,我做了一些愚蠢的事情。
非常感谢任何帮助。
<?php
require('../fpdf/fpdf.php');
class PDF extends FPDF
{
// Colored table
function FancyTable($header, $data)
{
// Colors, line width and bold font
$this->SetFillColor(255,0,0);
$this->SetTextColor(255);
$this->SetDrawColor(128,0,0);
$this->SetLineWidth(.3);
$this->SetFont('','B');
// Header
$w = array(40, 35, 40, 45);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C',true);
$this->Ln();
// Color and font restoration
$this->SetFillColor(224,235,255);
$this->SetTextColor(0);
$this->SetFont('');
// Data
$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]),'LR',0,'R',$fill);
$this->Cell($w[3],6,number_format($row[3]),'LR',0,'R',$fill);
$this->Ln();
$fill = !$fill;
}
// Closing line
$this->Cell(array_sum($w),0,'','T');
}
}
$csv = array();
$lines = file('../data/StaffData.csv', FILE_IGNORE_NEW_LINES);
foreach ($lines as $key => $value)
{
$csv[$key] = str_getcsv($value);
}
$pdf = new FPDF();
// Column headings
$header = array('Country', 'Capital', 'Area (sq km)', 'Pop. ');
$data = $csv;
$pdf->AddPage();
$pdf->FancyTable($header,$data);
$pdf->Output();
?>
**更新**
-谢谢您的帮助。
我确实改变了字体并且没有任何区别。我把它改成了:
$this->SetFont('','B');
到
$this->SetFont('Arial','',14);
(在花式表功能中)
但它出现了大量的这些错误:
警告:number_format()期望参数1为float,/ Applications / XAMPP / xamppfiles中给出的字符串......
注意:/ Applications / XAMPP / xamppfiles中遇到的格式不正确的数值......
致命错误:未捕获异常:FPDF错误:某些数据已经输出,无法在/ Applications / XAMPP / xamppfiles中发送PDF文件...
对不起,但我真的不知道该怎么做。
但是,我通过删除number_format的行来显示一些表格。我删除了这两行:
$this->Cell($w[2],6,number_format($row[2]),'LR',0,'R',$fill);
$this->Cell($w[3],6,number_format($row[3]),'LR',0,'R',$fill);
有什么理由?它显示前两列但不显示其余列。
答案 0 :(得分:2)
您的PDF类扩展了FPDF,因此您需要更改
$pdf = new FPDF();
到
$pdf = new PDF();