PDFで何かを出力する場合、ほとんどが納品書や請求書などの帳票でしょう。
これらもfpdfで出力することができます。
ソース
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
require_once 'fpdf/japanese.php'; function tosjis($str){ return mb_convert_encoding($str,'SJIS','auto'); } $pdf = new PDF_Japanese(); $pdf->AddSJISFont(); $pdf->AddPage(); $pdf->SetFont('SJIS','',18); //引数について //第1 テーブルの幅、 //第2 テーブルの高さ、 //第3 文字、 //第4 枠の有無 0なし 1あり //第5 0: 右へ移動 1: 次の行の開始位置へ移動 2: 下へ移動 //第5 テーブル内の文字の位置 L 左寄席 C 中央 R 右寄せ $pdf->cell(60,14,tosjis("名前"),1,0,'C'); $pdf->cell(20,14,tosjis("年齢"),1,0,'C'); $pdf->cell(70,14,tosjis("誕生日"),1,0,'C'); //これで改行を表す $pdf->ln(); $pdf->cell(60,14,tosjis("山田太郎"),1,0,'L'); $pdf->cell(20,14,"35",1,0,'C'); $pdf->cell(70,14,"1970/1/1",1,0,'R'); $pdf->ln(); $pdf->Output(); |