我想制作一个包含从数据库中获取的数据的动态页脚。如何扩展 TCPDF 类以放入这些数据?
// my DB stuff here
$datafromdb = getDataFromDB();
class MYPDF extends TCPDF {
// Page footer
public function Footer() {
// Position at 10 mm from bottom
$this->SetY(-10);
// Set font
$this->SetFont('dejavusans', 'I', 8);
$foot = $datafromdb.'Page '.$this->getAliasNumPage().'/'.$this->getAliasNbPages();
$this->MultiCell(0, 10, $foot, 0, 'C');
}
}
Run Code Online (Sandbox Code Playgroud)
您可以添加一个 __construct 方法来传递您的数据。
尝试这个 :
// my DB stuff here
$datafromdb = getDataFromDB();
class MYPDF extends TCPDF {
private $datafromdb ;//<-- to save your data
function __construct( $datafromdb , $orientation, $unit, $format )
{
parent::__construct( $orientation, $unit, $format, true, 'UTF-8', false );
$this->datafromdb = $datafromdb ;
//...
}
// Page footer
public function Footer() {
// Position at 10 mm from bottom
$this->SetY(-10);
// Set font
$this->SetFont('dejavusans', 'I', 8);
$foot = $this->datafromdb.'Page '.$this->getAliasNumPage().'/'.$this->getAliasNbPages();
$this->MultiCell(0, 10, $foot, 0, 'C');
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3478 次 |
| 最近记录: |