边距和右边对齐页脚tcpdf

时间:2016-02-08 10:30:14

标签: php html tcpdf

我正在为发票生成内容,但我需要拥有所有' divs'对齐 - 标题,正文和页脚。目前我的标题和正文对齐,但页脚的边距似乎没有对齐加上我有两个单元格 - 一个左对齐,另一个右对齐。然而,他们没有对齐加上他们的利润已经关闭。

public function Footer()
{
    $this->SetY(-15);
    $this->SetFont(PDF_FONT_NAME_MAIN, ' ', 8);
    $this->SetFooterMargin(15);

    //Get time
    $date = date('m/d/Y');
    $time = date('H:i:s A');

    $this->Cell(0, 0, 'Date: '.date("Y-m-d")." - Time: ".$time , 0, false, 'L');
    // Page number
    $this->Cell(0, 0, 'Page '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 0, false, 'R', 0, '', 0, true, 'T', 'M');
}

有什么建议吗?

1 个答案:

答案 0 :(得分:2)

在页脚函数中,调用此

$this->SetRightMargin(N); // Where N is the value of the margin spacing you like to achieve

希望这会有所帮助