php 將html轉爲pdf 不影響html樣式demo

原文地址:http://www.51ask.org/question/229

 

使用mpdf 類。 官方網址 www.mpdf1.com

 

<?php
    include('./mpdf60/mpdf.php');
    $mpdf = new mPDF('zh-CN'); 
    $mpdf->useAdobeCJK = true;
    $mpdf->SetDisplayMode('fullpage');
    $url = 'http://localhost/resume.html';
    $strContent = file_get_contents($url); 
    $mpdf->showWatermarkText = true;
    $mpdf->WriteHTML($strContent);
    $mpdf->Output(); //直接輸出pdf內容
    //$mpdf->Output('tmp.pdf',true);//保存成pdf文件
?>
原文地址:http://www.51ask.org/question/229
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章