我一直試圖將一個數據數組打印到fpdf的表中。 這是我繼教程: http://www.fpdf.org/en/tutorial/tuto5.htmFPDF -PHP -Call to undefined method
除了它口口聲聲說:
Fatal error: Uncaught Error: Call to undefined method FPDF::FancyTable() in ...
我見過很多這樣的其他問題,但他們都不固定我的。
我覺得這應該是一個非常簡單的解決方案,我正在做一些愚蠢的事情。
任何幫助將不勝感激。
<?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();
?>
**更新**
-Thanks的幫助。 我確實改變了字體並沒有改變。我改變它:
$this->SetFont('','B');
到
$this->SetFont('Arial','',14);
(在花式球檯功能)
但這些錯誤的堆出現:
Warning: number_format() expects parameter 1 to be float, string given in /Applications/XAMPP/xamppfiles...
Notice: A non well formed numeric value encountered in /Applications/XAMPP/xamppfiles...
Fatal error: Uncaught Exception: FPDF error: Some data has already been output, can't send PDF file in /Applications/XAMPP/xamppfiles...
我對不起,但我真的不知道該怎麼辦。
但是,我通過刪除number_format行來顯示一些表格。 I.E我刪除了這兩行:
$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);
任何原因爲什麼?它顯示前兩列,但不顯示其餘部分。
錯誤是告訴你'$行[2]'和'$行[3]'是擴展FPDF字符串而不是數字,所以你不能使用'number_format',除非你先將它們從一個字符串中轉換出來。 – hcoat
噢,好的。我呼應它們,行將所有數據保存在一個字符串中。我將如何將字符串轉換爲數字?在刪除number_format並離開行之後,它好像工作正常。 感謝您的幫助hcoat。無論如何,我會接受答案。 :-) –