FPDF と Codeigniter フレームワークで作成している PDF のヘッダーとフッターを設定するのに少し問題があります。このコードでは、ヘッダーに $user 変数をエコーできません。その変数を取得するにはどうすればよいですか?..クラスのコードは次のとおりです。
<?php
date_default_timezone_set('Asia/Jakarta');
$user=$this->session->userdata('name');
class printFPDF extends FPDF{
var $user;
function userdata($user){
$this->user=$user;
}
// Page header
function Header(){
global $user;
// Arial bold 15
$this->SetFont('Arial','I',8);
// Move to the right
$this->Cell(1);
// Title
$this->Cell(30,10,"Created by ".$this->user,0,0,'L');
// Move to the right
$this->Cell(190);
// Line break
$this->Ln(15);
}
}
どんな助けでも大歓迎です。