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

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

$str = "非常に長い文章を出力すると右端で自動的に改行が行われます。";
$str = $str."どこで改行されるのかはマージンの設定によります。\n";

$pdf->Write(10,$str);
$pdf->Write(10,'こんにちは。');
$pdf->Write(10,'お元気ですか?');

$pdf->Output();
?>