thinkphp如何輕鬆實現pdf的匯出(利用tcpdf外掛)

2020-07-16 10:05:31
本篇文章主要講述的是thinkphp輕鬆實現pdf匯出的方法程式碼,具有一定的參考價值,感興趣的朋友可以了解一下,希望能對你有所幫助。

程式碼編寫前先引入tcpdf整個資料夾到專案目錄的ThinkPHP資料夾下 如:/ThinkPHP/Library/Vendor/tcpdf

其他的不多說直接上程式碼

匯出考試結果明細

    public function export()
    {
    //  匯出考試結果明細(PDF)
        $id = I('id');
        $detailed = D('member_test_result');
        $parameter = $detailed->detailedResults($id);
        $name = $parameter['member_name'];
        $result = json_decode($parameter['test_result_str']);
        foreach ($result as $k => $v) {
            $test = M('test_cont');
            $array['question_title'] = $test->where('id=' . $k)->getField('qustion_title');
            //正確選項
            $array['state'] = $test->where('id=' . $k)->getField('state');
            //正確答案
            $wheres['test_id'] = $k;
            $wheres['state'] = $array['state'];
            $array['stateresult'] = M('test_answer')->where($wheres)->getField('answer_name');
            //選項
            $array['cont'] = $v;
            //選項內容
            $where['test_id'] = $k;
            $where['state'] = $array['cont'];
            $array['result'] = M('test_answer')->where($where)->getField('answer_name');
            $data[] = $array;
        }
        $content = '<!doctype html>';
        $content .= '<html lang="en">';
        $content .= '<head>';
        $content .= '<meta charset="UTF-8" />';
        $content .= '<title>考試結果</title>';
        $content .= '</head>';
        $content .= '<body>';
        $content .= '<p class="content">';
        $content .= '<p align="center" style="color: #0a6ebd;font-size: 24px"><b>考試結果</b></p>';
        $content .= ' <p style="color:#6a6a6a;letter-spacing:4px">';
        $content .= '<p><span>姓名:';
        $content .= $name;
        $content .= '</span>';
        $content .= '<span style="color:#fff;">1231';
        $content .= '</span>';
        $content .= '<span style="" >考試用時:';
        $content .= gmdate("i:s", $parameter['time_cost']);
        $content .= '</span>';
        $content .= '<span style="color:#fff;">1231';
        $content .= '</span>';
        $content .= '<span style="">考試分數:';
        $content .= $parameter['score'];
        $content .= '</span>';
        $content .= '<hr/>';
        foreach ($data as $k => $v) {
            $content .= '<p style=font-size: 20px><b>';
            $content .= $k + 1;
            $content .= '、</b>';
            $content .= $v['question_title'];
            $content .= '</p>';
            $content .= '<p style=" font-size: 14px">您的選項為:<span style="color:#0a6ebd;">';
            $content .= $v['cont'];
            $content .= '</span></p>';
            $content .= '<p style=" font-size: 14px">您的答案為:<span style="color:#0a6ebd;">';
            $content .= $v['result'];
            $content .= '</span></p>';
            $content .= '<p style=" font-size: 14px">正確選項為:<span style="color:red;">';
            $content .= $v['state'];
            $content .= '</span></p>';
            $content .= '<p style=" font-size: 14px">正確答案為:<span style="color:red;">';
            $content .= $v['stateresult'];
            $content .= '</span></p>';
        };
        $content .= '</p>';
        $content .= '</body>';
        $content .= '</html>';
        pdf($content);

    }

pdf方法

function pdf($html){
    vendor('Tcpdf.tcpdf');
    $pdf = new Tcpdf('P', 'mm', 'A4', true, 'UTF-8', false);
    // 設定列印模式,設定文件資訊
    $pdf->SetCreator(PDF_CREATOR);
    $pdf->SetAuthor('Nicola Asuni');
    $pdf->SetTitle('Examination result(考試結果)');
    $pdf->SetSubject('TCPDF Tutorial');
    $pdf->SetKeywords('TCPDF, PDF, PHP, example, test, guide');
    // 是否顯示頁首和是否顯示頁尾
    $pdf->setPrintHeader(false);
    $pdf->setPrintFooter(true);
    // 設定頁首和頁尾資訊內容
    $pdf->SetHeaderData('logo.jpg', 40, 'Helloweba.com', '小白測試', array(0,64,255), array(0,64,128));
    $pdf->setFooterData(array(0,64,0), array(0,64,128));
    // 設定頁首和頁尾字型
    $pdf->setHeaderFont(Array('dejavusans', '', '12'));
    $pdf->setFooterFont(Array('dejavusans', '', '10'));
    // 設定間距
    $pdf->SetHeaderMargin('5');
    $pdf->SetFooterMargin('10');
    // 設定左、上、右的間距
    $pdf->SetMargins('10', '10', '10');
    // 設定是否自動分頁  距離底部多少距離時分頁
    $pdf->SetAutoPageBreak(TRUE, '15');
    // 設定預設等寬字型
    $pdf->SetDefaultMonospacedFont('courier');
    // 設定行高
    $pdf->setCellHeightRatio(1);
    // 設定影象比例因子
    $pdf->setImageScale(1.25);
    //設定預設字型子集模式
    $pdf->setFontSubsetting(true);
    // 設定字型
    $pdf->SetFont('stsongstdlight', '', 14, '', true);
    $pdf->AddPage();
    $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);
  //PDF輸出   I:在瀏覽器中開啟,D:下載,F:在伺服器生成pdf ,S:只返回pdf的字串
  $pdf->Output(rand_string('9').'.pdf', 'I');
  }

相關教學:PHP視訊教學

以上就是thinkphp如何輕鬆實現pdf的匯出(利用tcpdf外掛)的詳細內容,更多請關注TW511.COM其它相關文章!