TP5.1 php 扩展插件mpdf

TP5.1 php 扩展插件mpdf

安装

官方安装方法是通过composer and its packagist package mpdf/mpdf.

$ composer require mpdf/mpdf

简单使用

  $mpdf = new \Mpdf\Mpdf();

// Write some HTML code:
        $mpdf->WriteHTML('Hello World');

// Output a PDF file directly to the browser


        $t = Response::create();
        $t->header('Content-Type', 'application/pdf');

        $mpdf->Output();

网页版 https://mpdf.github.io/

你可能感兴趣的:(tp5.1)