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

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

$pdf->SetFont(GOTHIC,'',20);
$pdf->Write(10,'文字列の出力');
$pdf->Ln();
$pdf->SetFont(GOTHIC,'BIU');
$pdf->Write(10,'文字列の出力');
$pdf->Ln();
$pdf->SetFont(MINCHO);
$pdf->Write(10,'文字列の出力');

$pdf->Output();
?>