私はcodeignitorに取り組んでおり、レポートを生成する作業を行っています。しかし、私の問題は、真剣に過度の時間を費やしているものを見るためにpdfファイルをダウンロードするたびにです。ここでmpdfで作業中にpdfを表示するには?
は、ここではMPDFマニュアルのリンクhttp://www.mpdfonline.com/repos/mpdfmanual.pdf
は私が働いている私のコードです。誰かが何かのplzのヘルプを知っている場合:
コントローラー: Report.php
public function index(){
$html =$this->load->view('report/index', $this->data, true);
$htmls=$html;
$this->load->library('Mpdf_land');
$pdfFilePath = 'Public_Opportunities_Detail('.date('Y-m-d H:i:s').').pdf';
$this->mpdf_land->pdf->WriteHTML($htmls);
$this->mpdf_land->pdf->Output(UPLOAD_REPORT_PATH.$pdfFilePath.'', "D");
}
表示ファイル:あなたは出力に "D" を変更することができます
<html>
<body>
<p>hello </p>
</body>
</html>
誰もいません?????????? – user3162878