<?php
require('fpdf/mbfpdf.php');

$pdf=new MBFPDF('P', 'mm', 'A4');
$pdf->AddMBFont(GOTHIC ,'SJIS');
$pdf->AddPage();
$pdf->SetFont(GOTHIC,'',20);

$pdf->SetAutoPageBreak(false);

$pdf->SetXY(10, 250);
$pdf->Write(10,'サンプル文字列');
$pdf->Ln();
$pdf->Write(10,'サンプル文字列');
$pdf->Ln();
$pdf->Write(10,'サンプル文字列');
$pdf->Ln();
$pdf->Write(10,'サンプル文字列');
$pdf->Ln();
$pdf->Write(10,'サンプル文字列');

$pdf->Output();
?>