安装PHP依赖 composer require phpoffice/phpword// 以下代码仅支持字符串与列表形式的一维数组 function fill_template($templatePath, $data = []) { //指定事先制作好的模板文件路径 try { $templateProcessor = new TemplateProcessor(public_path() . $templatePath); foreach ($data as $k => $datum) { if (is_string($datum)) { $templateProcessor->setValue($k, $datum); } else { $count = count($datum); $templat
风里来
最后,我终于解放了我自己……