随笔分类 - php
摘要:require_once ROOTPATH . 'tcpdf/vendor/autoload.php';$html='';if($html){ mpdf($html); }else{ echo "下载失败,请选择资源"; die(); } function mPdf($html, $fileName
阅读全文
摘要:/** * 下载图片并生成压缩包 * @param $arr 资源数组 * @return string */ function downloadZipImg($arr) {if(is_array($arr)&&$arr){ foreach ($arr as $key=>$val){$array=a
阅读全文
摘要:模板文件填充 然后生成新文件 //调用PHPwordrequire_once(ROOTPATH . "inc/vendor/autoload.php"); $phpWord = new \PhpOffice\PhpWord\PhpWord(); $templateProcessor = new \P
阅读全文
摘要:<?php require_once(ROOTPATH . "inc/PHPExcel/PHPExcel.class.php");//PHPExcel//获取数据 $objPHPExcel = new PHPExcel();//实例化PHPExcel类 $objSheet = $objPHPExce
阅读全文