丰满爆乳无码一区二区三区,欧美RAPPER潮水抽筋,精品夜夜爽欧美毛片视频,欧美XXXXX高潮喷水

400-800-9385
網(wǎng)站建設(shè)資訊詳細(xì)

網(wǎng)站開發(fā)之php將html轉(zhuǎn)成pdf

發(fā)表日期:2021-08-14 14:23:26   作者來源:劉紅旺   瀏覽:1843   標(biāo)簽:php網(wǎng)站開發(fā)    
功能需求:將產(chǎn)品導(dǎo)出成pdf手冊,用于產(chǎn)品收藏與宣傳
所用框架thinkphp3.2
所用庫類Mpdf,下載地址:https://github.com/mpdf/mpdf
將mpdf庫類放入ThinkPHP\Library\Vendor\ 文件夾中
1.控制器方法
 public function pdf($id){
        $FavModel=new \Home\Model\MemberFavModel();
        $list=$FavModel->search_fav($id);/獲取數(shù)據(jù)列表
       
        //引入類庫
        Vendor('Mpdf.mpdf');
        //設(shè)置中文編碼
        $mpdf=new \mPDF('zh-cn','A4', 0, '宋體', 0, 0);
        $sying=' ';
        $mpdf->SetWatermarkText($sying,0.1);
        $path_root= ? '..'. : '.'.;
        $strContent = $this->bld_htm($list, $path_root);//創(chuàng)建html內(nèi)容
        
 
         //dump($list); 
        //print_r($strContent);exit;
        $mpdf->showWatermarkText = true;
        $mpdf->SetHTMLHeader('');
        $mpdf->SetHTMLFooter('' );
        $mpdf->WriteHTML($strContent);
      
        $Path=$path_root.'/Download/'.'Wish List';
        if(!is_dir($Path)){
         mkdir(iconv("UTF-8", "GBK", $Path),0777,true);
        }    
        //保存ss.pdf文件
        $mpdf->Output($Path.'/Wish List.pdf');
        //直接瀏覽器輸出pdf
        // $mpdf->Output('tmp.pdf',true);
        $mpdf->Output('Wish List.pdf','I');//I表示在線展示 D則顯示下載 f生成后保存到服務(wù)器
        // $mpdf->Output();
        // exit;
   }
 
  • 創(chuàng)建html
 public function bld_htm($list, $path_root){
        $str=''; 
        $str.='<div style="width: 100%; ">
        <div style="width: 90%; margin: auto;">
          <div style="text-align: center; color: #000000; font-size: 20px; margin-bottom: 20px; ">
            HuaJewelry
          </div>
          <div style="border-bottom: #999999 solid 1px; color: #fe0001; font-weight: bold; font-size: 18px; padding-bottom: 15px;">
           Wish List
          </div>
          <ul style="width:100%;  margin-top: 45px; padding: 0;">';
      
        foreach($list as $k=>$v){
            
            $class='float: left; width: 31%; list-style: none; box-sizing: border-box; margin-right:1%; margin-bottom: 2%; text-align: center; border: #e2e2e2 solid 1px';
            $str.='<li style="'.$class.'">
            <a href="" style="display: block; width: 100%;">
              <div style="width:100%; ">
                <img src="'.$path_root.$v['picture'][0].'" style="max-width: 100%;" />
              </div>
              <div style="font-size: 15px; line-height: 1.7; color: #000000; padding: 15px;">
                  '.$v['goods_no'].'<br>
                  $'.$v['price'].'
              </div>
            </a>
          </li>';   
         
        }
 
        $str.="</ul></div></div>";
        return $str; 
   }
注意這個樣式要寫在行內(nèi)才能有效果,不要用超出隱藏會丟失整個數(shù)據(jù),而不是隱藏超出的部分,不知道是否是圖片的關(guān)系,我用超出隱藏就會少幾個產(chǎn)品。
前端效果:這里是將個人收藏的商品導(dǎo)出成為excel或者pdf,pdf可以下載預(yù)覽,預(yù)覽需要瀏覽器支持,基本上的pc瀏覽器都是自帶插件的,手機(jī)需要安裝應(yīng)用或者瀏覽器有帶插件才可以查看。

網(wǎng)站界面

這里是直接用鏈接的形式帶上參數(shù)跳轉(zhuǎn)到方法pdf(帶參數(shù)id)

代碼1

如圖:導(dǎo)出后的效果,因為這里是I 在線展示,如果需要可以設(shè)置成D下載文件。
 
 $mpdf->Output('Wish List.pdf','I');//I表示在線展示 D則顯示下載
 

PDF界面

代碼2

代碼3

 
 
 
如沒特殊注明,文章均為方維網(wǎng)絡(luò)原創(chuàng),轉(zhuǎn)載請注明來自http://www.sdlwjx666.com/news/6201.html
南宫市| 长乐市| 辰溪县| 平定县| 石门县| 肇庆市| 罗田县| 平阴县| 腾冲县| 昌吉市| 桂平市| 浦县| 南陵县| 新源县| 平原县| 同德县| 丰城市| 巴楚县| 滕州市| 江孜县| 长葛市| 墨玉县| 太湖县| 南岸区| 澎湖县| 宁国市| 蕉岭县| 南木林县| 行唐县| 霍邱县| 遂平县| 甘谷县| 阿合奇县| 三明市| 淮南市| 磐安县| 平和县| 秭归县| 平湖市| 阜城县| 柯坪县|