基本文法

文法

<?php
    require_once('mpdf50/mpdf.php');
 
    $html = "
    <div>
        Hello World
    </div>
    <br />
    <table border=\"1\">
      <tr>
        <td>aaa</td>
        <td>bbb</td>
      </tr>
      <tr>
        <td>ccc</td>
        <td>ddd</td>
      </tr>
    </table>
    <br />
    <b>テスト</b>
    ";
 
    // 生成
    $mpdf = new mPDF('ja', 'A4', 10, '', 10, 10, 10, 10, 5, 5);
 
    // HTML設定
    $mpdf->WriteHTML($html);
 
    // PDF表示モード
    $mpdf->SetDisplayMode('fullpage', 'single');
 
    // PDF表示
    $mpdf->Output();
    exit;
?>
 
 




最終更新:2011年03月16日 23:26