• 2024-08-09php 使用phpoffice/phpword导出word
    安装指令composerrequirephpoffice/phpword 基本设置/***//设置常用文本样式*'size'=>12,//文字大小*'name'=>'宋体',//字体名称*'bold'=>true,//加粗*'italic'
  • 2024-03-25thinkphp导出word【 直接生成word文件 】
    PHPWord中文文档  使用composer安装PHPword:composerrequirephpoffice/phpword直接生成word文件:publicfunctiontest(){$phpWord=new\PhpOffice\PhpWord\PhpWord();//设置默认样式$phpWord->setDefaultFontName('宋体');//字体
  • 2023-12-21PHP读取word文档
    1.安装1.1composer安装phpoffice/phpwordcomposerrequirephpoffice/phpword1.2后台代码 $file=$this->request->request('file');if(!$file){$this->error(__('Parameter%scannotbeempty','file
  • 2023-09-21PHP获取Word文档 docx文件内容
    1.下载库composerrequirephpoffice/phpword2.写代码2.1引入点击查看代码usePhpOffice\PhpWord\IOFactory;usePhpOffice\PhpWord\Element\TextRun;usePhpOffice\PhpWord\Element\Text;usePhpOffice\PhpWord\Element\Paragraph;2.2点击查看代码/
  • 2023-07-26使用phpword生成电子合同与GD库绘制表格
    functioncreate_table(){$data=array();//生成演示数据for($i=0;$i<10;$i++){$data[]=['name'=>'测试名'.$i,'zhuang'=>100,�